$(document).ready(function(){
		$('#model').blur(function(){
		var vmodel = $('#model').val();
		if(vmodel != ''){
			$.ajax({
					url: 'server.php',
					type: 'POST',
					dataType: 'html',
					data: 'model='+vmodel+'&action=getModel',
					success: function(html) {
						$('#motorizare').empty().html(html);
					}
			});	
		} else {			
			alert('Va rugam selectati modelul!');
		}
		return false;
			
	});	
});