function BanksCore() {
	this.ident ='';
	
	this.selectRegion = function(id) {
		var data = new Object();
		data['regionid'] = id;
		data['action'] = 'region';
		data['widget'] = 'banksfilter';
		this.InitializeRequest('POST', '/ajax.php');
        this.Commit(postquery(data));	
	}
	
	this.OnSuccess = function()
      {
      	//alert(this.GetResponseText());
      	eval(this.GetResponseText());
      	// fade(0,"form_"+this.ident);
      	// $("loading_"+this.ident).style.display = 'none';
      }
}

BanksCore.prototype = new ajax();
Banks = new BanksCore();