// JavaScript Document

function checkSearchForm(theForm){

	text = "Some search criteria is missing:\n\n";
	flag = false
	
	if(theForm.businesstype.value == 0){
	
		text = text + "- Business Type\n";
		flag = true;
		
	}
	
	if(flag){
		
		alert(text);
		return false;
	}
	
	return true;

}