jQuery(function() {
var $pOutput = jQuery('#output p');

jQuery('#make').change(function(){
    var $this = jQuery(this);
    if (! $this.val()){
        $this.nextAll('select').attr('disabled', 'disabled');
        return;
    }
    $this.nextAll('img').fadeIn('normal');
    var url = '/scripts/model.php?make='+$this.val();
    jQuery.ajax({
        url: url,
        dataType: 'html',
        success: function(data){
            jQuery('#model').html(data).removeAttr('disabled');
            $this.nextAll('img:first').fadeOut('normal');
        }
    });
});

jQuery('#model').change(function(){
    if (! jQuery(this).val()){ 
        $pOutput.html(''); 
        return; 
    }
    var content = "<strong>Vehicle:</strong> " 
        + jQuery('#make').val() + ' '
        + jQuery(this).val();
    $pOutput.html(content); 
	jQuery('#search').css("display","block");
	jQuery('#output').css("display","block");
	jQuery('#intro').css("display","none");
});


});

