// JavaScript Document

		function MM_jumpMenu(targ,selObj,restore){ //v3.0
		  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		  if (restore) selObj.selectedIndex=0;
		}

function setMenu() {
	var oTextBoxJobTitle = document.getElementById("otherJobTitle");
	var oMenuJobTitle = document.getElementById("ddJobTitle");
	
	var oTextBoxInstitution = document.getElementById("otherInstitution");
	var oMenuInstitution = document.getElementById("ddInstitution");
	
	var oTextBoxDegree = document.getElementById("otherDegree");
	var oMenuDegree = document.getElementById("ddDegree");
	
	var oTextBoxPrimaryField = document.getElementById("otherPrimaryField");
	var oMenuPrimaryField = document.getElementById("ddPrimaryField");
	
	if (oTextBoxJobTitle.value != "") {
			oMenuJobTitle.value = "1015";
	} if (oTextBoxInstitution.value != "") {
			oMenuInstitution.value = "1021";
	} if (oTextBoxDegree.value != "") {
			oMenuDegree.value = "1052";
	} if (oTextBoxPrimaryField.value != "") {
			oMenuPrimaryField.value = "1046";
	}
}
function clearOther() {
	var oTextBoxJobTitle = document.getElementById("otherJobTitle");
	var oMenuJobTitle = document.getElementById("ddJobTitle");
	
	var oTextBoxInstitution = document.getElementById("otherInstitution");
	var oMenuInstitution = document.getElementById("ddInstitution");
	
	var oTextBoxDegree = document.getElementById("otherDegree");
	var oMenuDegree = document.getElementById("ddDegree");
	
	var oTextBoxPrimaryField = document.getElementById("otherPrimaryField");
	var oMenuPrimaryField = document.getElementById("ddPrimaryField");
		if (oMenuJobTitle.value != "1015") {
			oTextBoxJobTitle.value = "";
		} if (oMenuInstitution.value != "1021") {
			oTextBoxInstitution.value = "";
		} if (oMenuDegree.value != "1052") {
			oTextBoxDegree.value = "";
		} if (oMenuPrimaryField.value != "1046") {
			oTextBoxPrimaryField.value = "";
		} 
}