I must say that I really appreciate the effort the both of you put into this. I really do.
Yesterday afternoon I got to talking with my best friend who happens to be a really good programmer, and I slipped the issue to him hoping he might know how to solve the problem. He gave me this short javascript code:
<script type="text/javascript">
function codeDisplay(which) {
document.getElementById('phoneDisplay').innerHTML = document.getElementById('faxDisplay').innerHTML = which.value;
}
</script>
In the select I then made an - onchange="codeDisplay(this)"
phoneDisplay and faxDisplay was then just inserted in the <td> like this:
<td id="phoneDisplay">
<td id="faxDisplay">
That works perfect and just how I want it to work. I just thought you'd all like to know that.
Thank you again for your efforts! I really appreciate it.