function ncuCheckForm(form) {
	
	if (form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
		alert("You must have a Bachelor's Degree or higher.");
		return (false);
	}
	
	if (form.custom2 && !form.custom2[0].checked && !form.custom2[1].checked) {
		alert("Please specify whether you would like to receive mobile text messages from us.");
		return (false);
	}

	if (form.custom1 && form.custom1.value == '') {
		alert("Please specify when you plan to enroll.");
		return (false);
    }
		
    return true;
}

function ncuProgramChange(form)
{	
}