addNamespace("CbgWebSite");
CbgWebSite.RouteSearch_class = Class.create();
CbgWebSite.RouteSearch_class.prototype = (new AjaxPro.Request()).extend({
	CityBindByCountryID: function(countryID, callback) {
		return this.invoke("CityBindByCountryID", {"countryID":countryID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/CbgWebSite.RouteSearch,CbgWebSite.ashx";
	}
})
CbgWebSite.RouteSearch = new CbgWebSite.RouteSearch_class();

