function mostrarInfoRepresentante(parametros){
	$.ajax({
		url			: "ajax/search-dealer.php",
		data		: parametros+"&ajax=true",
		dataType	: "html",
		beforeSend	: function(){
						
		},
		success		: function(data){
			$("#found-dealer").html(data);
		}			
	});
}


function showStates(country_id, line_id){
	$.ajax({
		url			: "ajax/search-states.php",
		data		: "line_id="+ line_id +"&country_id="+country_id+"&ajax=true",
		dataType	: "html",
		beforeSend	: function(){
						
		},
		success		: function(data){
			$("#found-dealer").html(data);
		}			
	});
}

//------------------------------------//
$(window).load(function(){
});

$(document).ready(function(){
	
});
