
	var get_data_url = "templates_globales/ajax/change_country.php?";

	function show_hide_country_select(id,b)
	{
		if(b)
		{
			document.getElementById('country_select_'+id).style.display='block';
			document.getElementById('change_country_'+id).style.display='none';
		}
		else
		{
			document.getElementById('country_select_'+id).style.display='none';
			document.getElementById('change_country_'+id).style.display='block';
		}
		return false;
	}
	
	function select_country(id)
	{
		//Cargar por ajax los datos del pais seleccionado
		var country = document.getElementById('sel_country_'+id).value;
		var url = get_data_url+"country="+country+"&lang="+lang+"&superprefix="+superprefix;
		LoadURL(url,'show_data("'+id+'")');
	}
	
	function show_data(id)
	{
		var values = ajax_result.split("|");
		document.getElementById('sms_prefix_'+id).innerHTML = values[0];
		document.getElementById('sms_phone_'+id).innerHTML = values[1];
		document.getElementById('sms_cost_'+id).innerHTML = values[2];
		document.getElementById('sms_operators_'+id).innerHTML = values[4];
		document.getElementById('change_country_text_'+id).innerHTML = country_change_text.replace('__country__',values[5])
		show_hide_country_select(id,false);
	}
	

