function quinnipiacCheckForm(form) {
	if (form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("Your Student Information Form indicates that you do not meet the admissions requirements for acceptance into Quinnipiac University.");
        return (false);
    }
	if (form.program && form.program.value.indexOf("CASOT")==0 && form.educationLevel && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("You must have Master's Degree or above to qualify for this program.");
        return (false);
    }
    return true;
}

function quinnipiacProgramChange(form)
{
}