function polytechnicCheckForm(form) {
	if (form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
		alert("Based on the information you provided, you do not currently meet the application requirements for this school.")
		return (false);
    }
    return true;
}

function polytechnicProgramChange(form)
{
}