function checkform(){
	
a=document.schoolSearch.formlawschool.selectedIndex;



		if(a == 0){
			alert('Please select a law school');
			return false;
		}
		else
			return true;

}

