$().ready(function() {

	$("#sch_make").change(function () {
		var model_list	=	$.ajax({
			type : 'GET',
			url : 'sell_car.php?mode=get_model&t_id='+$("#sch_make").val(),
			async : false
			/*success : function (html) {
					$('#sch_model').replaceContent(html);
				}*/
		}).responseText;
		document.getElementById('sch_model').innerHTML	=	model_list;
	})
	
	
})