window.onload = initForm;

window.onunload = function() {};
 
 function initForm() {
	 document.getElementById("newLocation").selectedIndex = 0;
	 document.getElementById("newLocation").onchange = jumpPage;
	 document.getElementById("newLocation2").selectedIndex = 0;
	 document.getElementById("newLocation2").onchange = jumpPage2;
  }

	 

 	function jumpPage() {
	 var newLoc = document.getElementById("newLocation");
	 var newPage = newLoc.options[newLoc.selectedIndex].value;
	 if(newPage != "") {
	 window.location = newPage;
	 }
	}
 
	 function jumpPage2() {
	 var newLoc2 = document.getElementById("newLocation2"); 
	 var newPage2 = newLoc2.options[newLoc2.selectedIndex].value;
	 if(newPage2 !=""){
	 window.location = newPage2;
	 }
	 }
