
$('#00N80000004fveS').change(function(){
    var $this = $(this);
    if (! $this.val()){
        $this.nextAll('select').attr('disabled', 'disabled');
        return;
    }
    $this.nextAll('img').fadeIn('normal');
    var url = '/lead_form/model.php?make='+$this.val();
    $.ajax({
        url: url,
        dataType: 'html',
        success: function(data){
            $('#00N80000004fveT').html(data).removeAttr('disabled');
            $this.nextAll('img:first').fadeOut('normal');
        }
    });
});

$('#00N80000004fveT').change(function(){
    if (! $(this).val()){ 
        $pOutput.html(''); 
        return; 
    }


});

