function updateZoneData(country,lang){
	if(lang == 'en') txtLoading = 'Loading'; else txtLoading = 'Cargando';
	$('#zonedata').fadeOut(25,function(){
		$('#zonedata').after('<p id="loading"><em></em>' + txtLoading + '...</p>');
		
		$.ajax({type: 'GET', url:'/includes/ajax-contact.php', 
			   data: 'country=' + country + '&lang=' + lang, 
			   error:function(XMLHttpRequest, textStatus, errorThrown){changeHtml('')}, 
			   success: function(html){changeHtml(html)}
		});
	});
}

function changeHtml(html){
	$('p#loading').fadeOut(25,function(){
		$('p#loading').remove();
		$('#zonedata').html(html);
		$('#zonedata').fadeIn(25);
	});
}
