addNamespace("Aberda.Controls");
Aberda.Controls.AreaDropDownList_class = Class.create();
Object.extend(Aberda.Controls.AreaDropDownList_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetAreas: function(parentID) {
		return this.invoke("GetAreas", {"parentID":parentID}, this.GetAreas.getArguments().slice(1));
	},
	initialize: function() {
		this.url = '/ajaxpro/Aberda.Controls.AreaDropDownList,WebUI.ashx';
	}
}));
Aberda.Controls.AreaDropDownList = new Aberda.Controls.AreaDropDownList_class();

