if(typeof Ajax == "undefined") Ajax={};
if(typeof Ajax.Province == "undefined") Ajax.Province={};
Ajax.Province_class = function() {};
Object.extend(Ajax.Province_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCity: function(pstr) {
		return this.invoke("GetCity", {"pstr":pstr}, this.GetCity.getArguments().slice(1));
	},
	GetCity2: function() {
		return this.invoke("GetCity2", {}, this.GetCity2.getArguments().slice(0));
	},
	url: '/ajaxpro/Common.Province,Common.ashx'
}));
Ajax.Province = new Ajax.Province_class();

