function sBtState(form) {

var iBtateIndx = document.address.billtostate.selectedIndex;
var sBtate = document.address.billtostate.options[iBtateIndx].value;

document.address.billtostate.value = sBtate;
}

function sBtCon(form) {
var iBtconIndx = document.address.billtocountry.selectedIndex;
var sBtcon = document.address.billtocountry.options[iBtconIndx].value;
document.address.billtocountry.value = sBtcon;
}
function sStState(form) {
var iStateIndx = document.address.shiptostate.selectedIndex;
var sState = document.address.shiptostate.options[iStateIndx].value;

document.address.shiptostate.value = sState;
}
function sStCon(form) {
var iStconIndx = document.address.shiptocountry.selectedIndex;
var sStcon = document.address.shiptocountry.options[iStconIndx].value;

document.address.shiptocountry.value = sStcon;
}

