function populateCategory(){form = document.forms['career_education_frm'];form.cat_id.options[0] = new Option("All", "0");form.cat_id.options[1] = new Option("Art & Design", "9");form.cat_id.options[2] = new Option("Business", "2");form.cat_id.options[3] = new Option("Criminal Justice", "3");form.cat_id.options[4] = new Option("Culinary Arts", "20");form.cat_id.options[5] = new Option("Education/Teaching", "5");form.cat_id.options[6] = new Option("Healthcare", "6");form.cat_id.options[7] = new Option("Human Services", "15");form.cat_id.options[8] = new Option("Legal/Paralegal", "16");form.cat_id.options[9] = new Option("Liberal Arts", "18");form.cat_id.options[10] = new Option("Nursing", "10");form.cat_id.options[11] = new Option("Political Science", "22");form.cat_id.options[12] = new Option("Religious Studies", "19");form.cat_id.options[13] = new Option("Science & Math", "17");form.cat_id.options[14] = new Option("Technology", "4");}function populateDegree(){form = document.forms['career_education_frm'];form.type_id.options[0] = new Option("All", "0");form.type_id.options[1] = new Option("Certificate Programs", "7");form.type_id.options[2] = new Option("Associate's Programs", "2");form.type_id.options[3] = new Option("Bachelor's Programs", "1");form.type_id.options[4] = new Option("Master's Programs", "3");form.type_id.options[5] = new Option("M.B.A. Programs", "6");form.type_id.options[6] = new Option("Doctoral", "4");form.type_id.options[7] = new Option("Degree Completion", "12");form.type_id.options[8] = new Option("Post-Bacc Programs", "13");form.type_id.options[9] = new Option("Post-Grad Certificates", "14");}function populateConcentration(cat_id){var cat_id   = "_" + cat_id;var cat      = new Array();cat['_9'] = [[70,'Animation'],[88,'Architecture'],[71,'Fashion'],[49,'Graphic Design & Multimedia'],[51,'Interior Design'],[52,'Video Game Dev & Design'],[69,'Visual Communication'],[50,'Web Development & Design']];;cat['_2'] = [[7,'Accounting & Finance'],[13,'Business Administration & Business Management'],[66,'Communications'],[15,'Contract Management'],[81,'Customer Service'],[16,'E Business'],[80,'Economics'],[47,'Entrepreneurship'],[17,'Healthcare Management'],[75,'Hospitality Management'],[19,'Human Resources'],[20,'International Business'],[21,'IT Management'],[77,'Leadership'],[1,'Marketing'],[76,'Organizational Management '],[23,'Project Management'],[63,'Six Sigma'],[78,'Sports & Entertainment Business'],[79,'Supply Chain Management']];;cat['_3'] = [[55,'Computer Security'],[56,'Corrections'],[57,'Crime Scene'],[58,'Criminal Justice (General)'],[59,'Forensics'],[60,'Homeland Security'],[61,'Law Enforcement, Policing & Investigation'],[62,'Public Safety & Security']];;cat['_20'] = [];;cat['_5'] = [[46,'Adult Education'],[41,'Curriculum & Instruction'],[37,'Education/Teaching (General)'],[42,'Instructional  Technology'],[39,'Leadership & Administration'],[72,'Special Education']];;cat['_6'] = [[82,'Health Informatics'],[43,'Healthcare Admin & Mgmt'],[83,'Medical and Dental Specialties'],[84,'Medical Assisting'],[68,'Medical Billing and Coding'],[44,'Nursing'],[85,'Physical and Occupational Therapy'],[86,'Public Health']];;cat['_15'] = [[10,'Counseling'],[9,'Psychology']];;cat['_16'] = [[73,'Law & Legal'],[74,'Paralegal']];;cat['_18'] = [];;cat['_10'] = [];;cat['_22'] = [];;cat['_19'] = [];;cat['_17'] = [];;cat['_4'] = [[33,'Computer Science'],[35,'Database Technology'],[25,'Info. Technology / Computer Systems'],[29,'Internet & Website Development'],[36,'Management Info Systems'],[26,'Network Admin & Security'],[27,'Programming'],[30,'Software Engineering'],[28,'Tech Project Management'],[31,'Technology Management'],[34,'Technology/E Business'],[48,'Telecommunications']];document.forms['career_education_frm'].conc_id.options.length = 0;for(var n = 0; n < cat[cat_id].length; n++){    opt = cat[cat_id][n];  f = document.forms['career_education_frm'].conc_id;  document.forms['career_education_frm'].conc_id.options[f.options.length] = new Option(opt[1], opt[0]);}}