function kellerCheckForm(form) {
	if (form.custom1 && form.custom1.value == "") {
		alert("Please specify address type.");
		return (false);
	}
	if (form.ageRange && form.ageRange.value == "") {
		alert("Please specify your age.");
		return (false);
	}
	if (form.ageRange && (form.ageRange.value == "16"||form.ageRange.value == "17"||form.ageRange.value == "19")) {
		alert("Applicants to Keller Graduate School of Management must be 21 years of age upon enrollment.  We’ll hope that you consider us for your future continuing education.");
		return (false);
	}
	if (form.gradYear && form.gradYear == "") {
        alert("Please specify Year of College Graduation.");
        return (false);
    }
	if (form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("Applicants to Keller Graduate School of Management must have bachelor degree or higher.  We’ll hope that you consider us for your future continuing education.");
        return (false);
    }
	if (form.custom2 && form.custom2.value == "") {
		alert("Please specify name of university or school attended.");
		return (false);
	}
	if (form.noincentive && !form.noincentive.checked) {
        alert("To request more information, you must understand that there is no incentive associated with filling out this form.");
        return (false);
    }
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must understand that an admissions counselor from DeVry University or its Keller Graduate School of Management will contact you to discuss a personal education plan that will fit your lifestyle and schedule.");
        return (false);
    }
    return true;
}

function kellerProgramChange(form)
{
}
