toggleList: function(e) {
e.stopPropagation();
this.$el.toggle();
$(document).one('click', function() {this.$el.hide();}.bind(this));
}
events: {
'click': function(e) {
this.countriesDropDownListView.toggleList(e);
}
}