function ashworthcollegeCheckForm(form) {

	if ((form.program.options[form.program.selectedIndex].text.indexOf("(M") >=0||form.program.options[form.program.selectedIndex].text.indexOf("MASTERS") >=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);
    }
	
	if(form.custom1 && form.custom1.value=='') {
		alert("Please specify your age.");
		return (false);
	}

    return true;
}

function ashworthcollegeProgramChange(form)
{
}