//Zone Scriptfunction initZone(selectValue){    var url = "http://www.e-budget.co.jp/API/getZone.php";        new Ajax.Request(url , {         method: 'get',         parameters: 'key=yeZmMslBQmZm',        onComplete: function(responseHttpObj){                            var doc = responseHttpObj.responseXML;                        var results = doc.getElementsByTagName("Results")[0];                        var total = results.getElementsByTagName("NumberOfResults")[0].childNodes[0].nodeValue;                        for (i=0; i<total; i++)
			{
				var zone = results.getElementsByTagName("Zone")[i];				var outreg = document.getElementById("outreg");
				var outOption = document.createElement("OPTION");
				outOption.text= zone.getElementsByTagName("ZoneName")[0].childNodes[0].nodeValue;
				outOption.value=zone.getElementsByTagName("ZoneCd")[0].childNodes[0].nodeValue + "," + zone.getElementsByTagName("GroupCd")[0].childNodes[0].nodeValue;				outreg.options.add(outOption);				var inreg = document.getElementById("inreg");
				var inOption = document.createElement("OPTION");
				inOption.text= zone.getElementsByTagName("ZoneName")[0].childNodes[0].nodeValue;
				inOption.value=zone.getElementsByTagName("ZoneCd")[0].childNodes[0].nodeValue + "," + zone.getElementsByTagName("GroupCd")[0].childNodes[0].nodeValue;				inreg.options.add(inOption);			}        },        onFailure : function(req){        },        onException : function(req, e){            alert(e);        }    });}