var AutoSuggestControllerCountry = AutoSuggestController.extend({

initialize: function(options) {
	this.parent(options);
	},
	
	remoteFuncCallBack: function(list){
		this.showList(list);
	}

});