function nuevoAjax()
{ 
	var xmlhttp=false;
	try
	{
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(E)
		{
			if (!xmlhttp && typeof XMLHttpRequest!='undefined') xmlhttp=new XMLHttpRequest();
		}
	}
	return xmlhttp; 
}



function activar_precio(opcionSeleccionada, tablonA)
{
		var ajax=nuevoAjax();
		var selectDestino=document.getElementById("activasmsdiv");
		var selectDestino_ast=document.getElementById("activasmsdiv_ast");

		ajax.open("GET", "/anuncio_editar_precio_proceso.php?opcion="+opcionSeleccionada+"&tablon_a="+tablonA, true);
		ajax.onreadystatechange=function() 
		{ 
			
			if (ajax.readyState==4)
			{
				selectDestino.innerHTML=ajax.responseText;
				if(selectDestino.innerHTML.length<10)
				{
				selectDestino_ast.style.display="none";
				}
				else
				{
				selectDestino_ast.style.display="block";

				}
			} 
		}
		ajax.send(null);
	
}