addNamespace("Index");
Index_class = Class.create();
Index_class.prototype = (new AjaxPro.Request()).extend({
	GetCityList: function(Id, callback) {
		return this.invoke("GetCityList", {"Id":Id}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Index,App_Web__owutuvc.ashx";
	}
})
Index = new Index_class();

