This didn't work in the end...
document.form1.mytextbox.value = document.form1.combobox.value;
No error messages show up but value is passed.
My chance I tried
document.form1.mytextbox.value = document.form1.combobox.selected;
and it worked.
Cheers for the help anyway.
Mark