$(document).ready(function(){
    $.getJSON("/includes/generated/make.php",function(json){
  		var drp = document.getElementById("make");
  		$.each(json, function(ky, val) {
       		drp.options[drp.options.length] = new Option(val, val);
  		});
	});
	
	$("#make").change(function(){
		$("#model").empty();
		$("#series").empty();
 		var drp = document.getElementById("series");
 		drp.options[0] = new Option("Select Series"," ");
		$.getJSON("/includes/makemodel.php",{make: $(this).val()},function(json){
  			drp = document.getElementById("model");
  			drp.options[0] = new Option("Select Model"," ");
  			$.each(json, function(ky, val) {
       			drp.options[drp.options.length] = new Option(val, val);
  			});
		});
	});

	$("#model").change(function(){
		$("#series").empty();
		$.getJSON("/includes/makemodel.php",{model: $(this).val()},function(json){
  			var drp = document.getElementById("series");
  			drp.options[0] = new Option("Select Series","");
  			$.each(json, function(ky, val) {
       			drp.options[drp.options.length] = new Option(val, val);
  			});
		});
	});
	


	
});

