$.get(
url,
{"id_auto_brand": id_auto_brand },
function (result) {
if (result.type == 'error') {
alert('error');
return(false);
}
else {
var options = '';
$(result.models).each(function() {
options += '<option value="' + $(this).attr('id_auto_model') + '">' + $(this).attr('name_auto_model') + '</option>';
});
$('#id_auto_model').html(options);
}
},
"json"
);