function chkSearch(n){
	var obj = document.search;
	if(
		obj.pref.options[obj.pref.selectedIndex].value && 
		obj.city.options[obj.city.selectedIndex].value && 
		obj.sub.options[obj.sub.selectedIndex].value
	){
		return true;
	}
	alert(n);
	return false;
}
