
function validate()
{
if(document.matchedu.areaofstudy.selectedIndex=='' && document.matchedu.degreetype.selectedIndex=='')
		{
		alert("Please select School Or search by a program:");
		document.matchedu.areaofstudy.focus()
		document.matchedu.degreetype.focus()
		return false;
		}
		return true;
	}

