AddNamespace("blackpeople.AjaxMethods");
blackpeople.AjaxMethods = {
	GetCountrySelect:function(controlHTML,onchange) {
		var req = new AjaxNET.Request("GetCountrySelect", {"controlHTML":controlHTML,"onchange":onchange},[2,arguments,2], this.url);
		return req.QueueRequest();
	},
	GetRegionSelect:function(countryCode,controlHTML,onchange) {
		var req = new AjaxNET.Request("GetRegionSelect", {"countryCode":countryCode,"controlHTML":controlHTML,"onchange":onchange},[3,arguments,2], this.url);
		return req.QueueRequest();
	},
	GetCitySelect:function(regionID,controlHTML,onchange,isUSA) {
		var req = new AjaxNET.Request("GetCitySelect", {"regionID":regionID,"controlHTML":controlHTML,"onchange":onchange,"isUSA":isUSA},[4,arguments,2], this.url);
		return req.QueueRequest();
	},
	GetZipCodeSelect:function(cityID,controlHTML,onchange) {
		var req = new AjaxNET.Request("GetZipCodeSelect", {"cityID":cityID,"controlHTML":controlHTML,"onchange":onchange},[3,arguments,2], this.url);
		return req.QueueRequest();
	},
	url:"/ajax/blackpeople.AjaxMethods,blackpeople.ashx"
}
