// JavaScript Document
$().ready(function(){
				   
				   
  $("select[name=categoria]").change(function(){
    $('select[name=marca]').html('<option value="">Procurando ...</option>');
    $('select[name=ano]').html('<option value="">Ano</option>');
    $('select[name=preco]').html('<option value="">Preço</option>');
    $('select[name=modelo]').html('<option value="">Modelo</option>');
    $.post('inc_combo_marca.php',
    { categoria : $(this).val() },
    function(resposta){
      $('select[name=marca]').html(resposta);
      }
    );
  });
  
  
  $("select[name=marca]").change(function(){
    $("#busca").submit();
  });
  
  
  $("select[name=ano]").change(function(){
    $('select[name=modelo]').html('<option value="">Procurando ...</option>');
    $('select[name=modelo]').html('<option value="">Modelo</option>');    
    $.post('inc_combo_modelo.php',
    { categoria : $("select[name=categoria]").val(), marca : $('select[name=marca]').val() , ano : $(this).val() },
    function(resposta){
      $('select[name=modelo]').html(resposta);
      }
    );
  });
  
  
  $("select[name=preco]").change(function(){
    $('select[name=modelo]').html('<option value="">Procurando ...</option>');
    $.post('inc_combo_modelo.php',
    { categoria : $("select[name=categoria]").val(), marca : $('select[name=marca]').val() , ano : $('select[name=ano]').val(), preco : $('select[name=preco]').val()  },
    function(resposta){
      $('select[name=modelo]').html(resposta);
      }
    );
  });
  
  
  $("select[name=modelo]").change(function(){
    $("#busca").submit();
  });
  
  

});
