
jQuery(document).ready(function(){
 //alert("hi");
	      jQuery.getJSON('http://zautos.com/used-car/makes', {
			ajax : 'true'
			}, function(data) {
				var html = '<option value="">Select Make</option>';
				var len = data.length;
				for ( var i = 0; i < len; i++) {
					html += '<option value="' + data[i].make + '">'+data[i].make + '</option>';
				}
				html += '</option>';
				jQuery('#makeList').html(html);});

 
});

				
