/* --------------------------------------------------- */
/* name:     schools.js                                */
/* author:   john a. vivian                            */
/* date:     14-sep-2005                               */
/* purpose:  school benefits selection                 */
/* --------------------------------------------------- */

function getSchools(stateSelect) {
theForm = stateSelect.form;
theForm.id.value = "";
theForm.action = "index.html";
	stateSelect.form.submit(); 
}

function getBenefits(schoolSelect) { 
	theForm = schoolSelect.form;
	// get the selected school's fice
	theForm.id.value = schoolSelect.options[schoolSelect.selectedIndex].value;
	// proceed to the school benefits page
	theForm.action = "benefits/index.html";
  theForm.submit(); 
}
