Replace this:-
Code:
for (var x=0; x<(document.payform.pay.length); x++)
{
if (document.payform.pay[x].checked)
{
adjustment=document.payform.pay[x].value;
payment=true;
}
}
with this
Code:
var si = document.payform.pay.selectedIndex;
if (si > 0) {
adjustment = document.payform.pay.value;
payment = true;
}
It is a
money order, not a Monday order

and the option values of Visa and Mastercard should be .9, not 1.2.
We are sorry that as a result of a typographical error we referred to General X as "a bottle-scarred old veteran". This should of course have read "a battle-scared old veteran".