function get_models(make, dropdown){
	$.ajax({
		type: 'GET',
		data: ({ 
			make : make
		}),
		dataType: 'html',
		url: 'http://www.vathauer.nl/201001/json.models.php',
		success: function(returned){
			$('#'+dropdown).html(returned);
		}
	}).reponseText;
}
