function keiseronlineCheckForm(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.");
		return (false);
	}
	if (form.program && form.program.options[form.program.selectedIndex].text.indexOf("PhD")==0) {
		if (form.educationLevel && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
			alert("Your Student Information Form indicates that you do not meet the admissions requirements.");
			return (false);
		}
	}
	if (form.custom1 && form.custom1.value == "") {
		alert("Please specify when you would like to start classes.");
		return (false);
	}
		
    return true;
}

function keiseronlineProgramChange(form)
{

}