// JavaScript Document
//--search
function search_chk(){
   obj = document.form1;
   if(obj.City.selectedIndex==0){
	 obj.City[obj.City.selectedIndex].value='';
	 obj.Canton[obj.City.selectedIndex].value='';
   }
	if(confirm('確定送出.？'))
	{
	   obj.submit();
	}
}

