
var categoryArray = ["- Select a Category -", 
		"Letters of Permission", 
		"Taking Courses at Another University", 
		"Faculty Transfers", 
		"Major Changes", 
		"Degree Changes", 
		"Problem adding or dropping courses", 
		"Questions about grades,GPAs,academic decisions", 
		"Academic Petitions", 
		"Transcript Orders", 
		"Replacement Diploma Orders", 
		"Questions About Graduation Status", 
		"Official Exams Conflicts", 
		"Exam and tests for students registered with a Disabilities Office", 
		"Religious Accommodation for tests and exams", 
		"Enrolment Verification Letters",
		"Bursaries/awards - queries", 
		"Tax Forms", 
		"Wire Transfers (money) from other Countries", 
		"Collections queries"];
		
var emailArray = ["-1", 
		"lop", 
		"lop", 
		"factran", 
		"enrol", 
		"enrol", 
		"enrol", 
		"grades", 
		"ropet", 
		"transcpt", 
		"diplomas", 
		"degaud", 
		"exams", 
		"altexams", 
		"rel_acc", 
		"yuverify", 
		"bursary", 
		"taxforms", 
		"wiretran", 
		"yu_accts"];
		
var iIDArray = ["2", 
		"10", 
		"10", 
		"11", 
		"12", 
		"12", 
		"12", 
		"13", 
		"14", 
		"15", 
		"16", 
		"17", 
		"18", 
		"19", 
		"20",
		"21", 
		"22", 
		"23", 
		"24", 
		"25"];

function createSelect() {

	var d = document.forms['userInfo'].categorySelect;	
	for(var count = 0; count < categoryArray.length; count++) {
		d.options[count] = new Option(categoryArray[count], emailArray[count]);
		
	}
}

function checkCatSelect() {

	var d = document.forms['userInfo'].categorySelect;
	var e = document.forms['userInfo'];
	
	
	e.category.value = d.options[d.selectedIndex].value;
	e.interfaceID.value = iIDArray[d.selectedIndex];
}