$(document).ready(function(){

	$("#marka").bind("change", function(e) {
		brand = $("#marka option:selected").text();
		$.get("/ajax/get_compontent_finder_model/", { brand: brand }, function(data){
				$("#tipus").html(data);
		});
	});

});


