I was receiving the following error upon adding something to my shopping cart ( I truncated the error for space saving purposes):

<!-- function update_zone(theForm) { // if there is no zone_id field to update, or if it is hidden from display, then exit performing no updates if (!theForm || !theForm.elements["zone_id"]) return; if (theForm.zone_id.type == "hidden") return; // set initial values var SelectedCountry = theForm.zone_country_id.options[theForm.zone_country_id.selectedIndex].value; var SelectedZone = theForm.elements["zone_id"].value; // reset the array of pulldown options so it can be repopulated var NumState = theForm.zone_id.options.length; while(NumState > 0) { NumState -= 1; theForm.zone_id.options[NumState] = null; } // build dynamic list of countries/zones for pulldown if (SelectedCountry == "14") { theForm.zone_id.options[0] = new Option("Please select ...", ""); theForm.zone_id.options[1] = new Option("Burgenland", "102"); theForm.zone_id.options[2] = new Option("Niedersterreich", "96"); theForm.zone_id.options[3] = new Option("Obersterreich", "97"); theForm.zone_id.options[4] = new Option("Salzburg", "98"); theForm.zone_id.options[5] = new Option("Steiermark", "100"); theForm.zone_id.options[6] = new Option("Tirol", "101");
The error itself is quite long. I finally tracked down how I am getting the error, I just do not know how to fix. If I disable the UPSXML mod, this error goes away. However this mod is very important to us as 99% of what we ship is UPS, we have a daily pickup and own UPS account number assigned to us. Can charge residential rates (too bad it cannot be determined per customer).

Has anyone else experienced this problem with this module, and if so, how did you fix it please. I cannot find any resolution in the forums.

tia...

0be1