addNamespace("AjaxMethod");
AjaxMethod_class = Class.create();
AjaxMethod_class.prototype = (new AjaxPro.Request()).extend({
	GetCityList: function(provinceid, callback) {
		return this.invoke("GetCityList", {"provinceid":provinceid}, callback);
	},
	GetZone: function(cityid, callback) {
		return this.invoke("GetZone", {"cityid":cityid}, callback);
	},
	GetAreaList: function(cityid, callback) {
		return this.invoke("GetAreaList", {"cityid":cityid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AjaxMethod,App_Code.d5zxmjmb.ashx";
	}
})
AjaxMethod = new AjaxMethod_class();

