ajaxObj = new XMLHTTP("/mybic_server.php"); function loadCalc() { ajaxObj.debug=1; //totalcostcalcLoadCountryies(); //totalcostcalcLoadStates('CA'); //totalcostcalcLoadShipMethods(); //totalcostcalcGetPrice(); } function totalcostcalcGetPrice() { var formVars = ajaxObj.getForm('checkout_form'); ajaxObj.call('action=get_product_price'+formVars+'&qty=1', totalcostcalcGetPriceResp); } function totalcostcalcGetPriceResp(resp) { if (resp.price) { e = document.getElementById('price'); e.innerHTML = 'PRICE: '+resp.price; } } function totalcostcalcLoadCountryies() { var postVars = 'action=country_list'; ajaxObj.call(postVars, totalcostcalcRespCountryList); } /* function totalcostcalcRespCountryList(resp) { e = document.getElementById('totalcost_country'); for (i=0;i