function WV_XhrZips(path,z,ids,pl){
	var idjs,vv,k,v,i,n,d=document;
	var tst='';
	idjs=WV_toOI(ids);
	var xhr=WV_Xhr(); if(xhr==null){ return false; }
	xhr.onreadystatechange=function(){
		if(xhr.readyState==4 && xhr.status==200){
			var xhrVals=xhr.responseXML;
			if(!xhrVals.documentElement){ return false; }
			//処理設定
			for(k in idjs){
				if(!d.getElementById(k)){ continue; }
				v=xhrVals.getElementsByTagName(idjs[k]).item(0).firstChild.data;
				if(pl && (idjs[k]=='pref' || idjs[k]=='prefnum')){ //プルダウン時
					var pp=null;
					for(i=0;i<pl.options.length;i++){
						n=pl.options[i].value;
						if(n==v){ pp=i; break; }
					}
					if(pp==null){ continue; }
					var po=pl.selectedIndex;
					pl.options[po].selected=false;
					pl.options[pp].selected=true; continue;
				}
				d.getElementById(k).value=v; //通常テキスト
			}
		}
	}
	xhr.open("GET",path+"zips.php?zips="+z,true);
	xhr.send(null);
	//d.getElementById('js_alert').innerHTML=tst;
	return true;
}

//____________________mio@skyv.org__m_i_o_
//[2008.04.28] 
