Not even by changing the source code?
I see here:
<script type=”text/javascript”>
<!–
//
function ReadForm (obj1, tst)
{
// Read the user form
var i,j,pos;
val_total=””;val_combo=””;
for (i=0; i<obj1.length; i++)
{
// run entire form
obj = obj1.elements[i]; // a form element
if (obj.type == “select-one”)
{ // just selects
if (obj.name == “quantity” ||
obj.name == “amount”) continue;
pos = obj.selectedIndex; // which option selected
val = obj.options[pos].value; // selected value
val_combo = val_combo + ” (” + val + “)”;
}
}
// Now summarize everything we have processed above
val_total = obj1.product_tmp.value + val_combo;
obj1.product.value = val_total;
}
//–>
</script>’;
That’s where the brackets are added, but when I try to change the line
val_combo = val_combo + ” (” + val + “)”;
to
val_combo = val_combo + ” <div>” + val + “</div>”;
They are taken out, and I can’t figure out why.
No chance on any knowledge there?