function nuevoAjax()
{ 
	var xmlhttp=false; 
	try 
	{ 
		// Creacion del objeto AJAX para navegadores no IE
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
	}
	catch(e)
	{ 
		try
		{ 
			// Creacion del objet AJAX para IE 
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch(E) { xmlhttp=false; }
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); } 

	return xmlhttp; 
}

function cargaContenido()
{
	var valor=encodeURIComponent(document.getElementById("select_0").options[document.getElementById("select_0").selectedIndex].value);

		ajax=nuevoAjax();
		ajax.open("GET", "filtro/procesotipotiendas.php?zona="+valor, true);
		ajax.onreadystatechange=function() 
		{ 
			if (ajax.readyState==4)
			{ 
				encodeURIComponent(document.getElementById("fila_2").innerHTML=ajax.responseText);
			} 
		}
		ajax.send(null);
}