function reset_field(did){
	var obj=document.getElementById(did);
	//alert(obj.selectedIndex);
	if(obj.selectedIndex!=undefined){
		obj.selectedIndex=0;
	}
	else{
		obj.value="";
	}
}