Я хочу скрыть состояния по атрибуту data-country в опции state.
$("#country").change(function () {
var country = $(this).children("option:selected").val();
$('#state').prop('disabled', false);
$('#state').val(null).trigger('change');
$('#state').select2('open');
$('#city').select2('close');
$('#city').prop('disabled', true);
});