
function fixSelect(val) {
	if (!pause) {
		document.write("<option>"+val);
	} else {
		var gr = document.form1.responsibility;
		var valOption = new Option(val);
		var valLen = gr.length;
		gr.options[valLen] = valOption;
	}
}
function InitOptions() {
	if (style1=="Not Selected") {
		fixSelect("Not Selected");
	}
	if (style1=="Database") {
		fixSelect("Database");
	}
	if (style1=="") {
		fixSelect("");
	}
	if (style1=="Any Industry") {
	f_Select = new Array ("Administration", "Advertising", "Aerospace,Aviation,Defence","Agriculture,Forestry,Fishing", "Airline,Shipping","Automotive,Motor Vehicle,Parts","Commercial / Materials", "Customer Service", "Call Centre - ITES", "Design and Development", "Education", "Entry level, New Graduates, College Jobs", "Fashion, Textile", "Finance Management / Accounts", "Hospitals / Health Care", "Hotels and Restaurant", "Human Resource","Legal / Law / Insurance", "Manufacturing and Operations", "Marketing", "Media and Content", "Medical Jobs", "Military", "NGOs", "Printing / Packaging", "Professional Services", "Project Professionals", "Transportation and Warehousing", "Technical Staff / Engineer", "Senior Management", "Sports and Recreation", "Travel and Tourism", "Utilities", "Others")
	for (i=0;i<35;i++)
		{
		fixSelect(f_Select[i]);
		}
	}
	
	if (style1=="Infotech (IT)") {
	f_Select = new Array ("Networks, Communications and Security","Database development and administration","Desktop support and Help Desk","Hardware Enineering System","System Administration / Support","Instruction / Training / Writing","Internet, Graphics and Multimedia Development","Management and Sales","Software Development and Engineering", "Telecom / ISP", "Other IT")
	for (i=0;i<13;i++)
		{
		fixSelect(f_Select[i]);
		}
	}
}
function reInitOptions() {
	var val = document.form1.industry;
	var gr = document.form1.responsibility;
	style1 = val.options[val.selectedIndex].text;
	
		for (i=gr.length;i>0;i--) {
		gr.options[1] = null;
	}
	pause = true;
	InitOptions();
	document.form1.responsibility[0].selected = true;
	return false;
}
function go() {
	var gr = document.form1.responsibility;
	var g = gr.options[gr.selectedIndex].text;
	alert('You chose '+g+'!');
}































































































