I've lokked high and low for a script to sort this out...
Basically I need a function that can be called upon by clicking a check box. The function should copy the current value of a drop down menu and transfer it into a checkbox... Does that make sense?
I've already used a function to transfer values from textbox to text box.
function copy() {
document.form1.CC_Address.value = document.form1.Address.value ;
}
However I can't manage to make this work for dropdown menus to text box.
Anyone???