$(document).ready(function() { 
    $('#smark_region').change(function(){
	mark_id = $(this).val();
	$('#smodel_region').html('<option>загрузка моделей...</option>');
	$.post('/smodels.php',{'mark_id': mark_id, 'flag': 0},sAfterRegion);
    }); 
    $('#asmark_region').change(function(){
        mark_id = $(this).val();
	$('#asmodel_region').html('<option>загрузка моделей...</option>');
        $.post('/smodels.php',{'mark_id': mark_id, 'flag': 1},asAfterRegion);
    });
}); 

function sAfterRegion (data){
    $('#smodel_region').empty();
    $('#smodel_region').append(data);
} 

function asAfterRegion (data){
    $('#asmodel_region').empty();
    $('#asmodel_region').append(data);
}

