function ccuCheckForm(form) {
	
	if (form.custom1 && form.custom1.value == "") {
        alert("Please specify your age range.");
        return (false);
    }	
	
	if (form.custom1 && form.custom1.value == "Under 18") {
        alert("You must be 18 or older to meet the addimission requirement.");
        return (false);
    }	

	if (form.program.value.indexOf("M") == 0 && form.educationLevel && form.educationLevel.value != "Bachelors"
		&& form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
		alert("To select Master's degree, must have Bachelor's Degree or higher.")
		return (false);
    }
	
    return true;
}

function ccuProgramChange(form)
{
}