function objetoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
		try {
        	xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
			xmlhttp = false;
			}
		}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	   }
	return xmlhttp;
}

function cambiaCantidad(cantidad,idLlanta,idPedido){
	ajax=objetoAjax();
	idLlanta = document.getElementById(idLlanta).value;		
	selectBox = document.getElementById(cantidad);		
	cantidad = selectBox.options[selectBox.selectedIndex].value;
	ajax=objetoAjax();			
	ajax.open("POST", "php/carroCompras/actualizarCantidad.php",true);
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("idLlanta="+idLlanta+"&cantidad="+cantidad+"&idPedido="+idPedido);
	window.location.reload();
	setTimeout(location.href="index.php?contenido=verCarro",5000);
}