function getImportoRataES()
{
	function handleStateChange()
	{
		if(xmlHttp.readyState==4 && xmlHttp.status==200)
		{
			var obj = xmlHttp.responseXML;
			var modelloAuto = obj.getElementsByTagName("modello_auto")[0].childNodes[0].nodeValue; 
		}
	}	
	var xmlHttp;

  	if(window.ActiveXObject)
	{
    	xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else
	{
	    xmlHttp = new XMLHttpRequest();
	}
	
	var qs = "?modello="+Vehicle.Model.code;
	if(Vehicle.Mvs.code != undefined)
	{
		qs+="&versione="+Vehicle.Mvs.code;
	}
	qs+="&prezzo="+calculatePrice('totalPrice');
	qs+="&id="+Math.random();
		
	var url = "http://goldpcatalog.fiat.com:8010/ProductCatalog.asmx/getFgacapitalLink?market=&mvs=001191932000&price=18000.00&filters=";
	
	xmlHttp.onreadystatechange = handleStateChange;
	xmlHttp.open("POST", url, true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.setRequestHeader("Content-length", qs.length);
	xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(qs);
}


