I have a drop down list and a text input.
When I click on the selected item in the list,..it will give me an output on the text input.
How do I put the value into the textinput?
Add this to the dropdown
onchange="window.form.field=(this.options[this.selectedIndex].value)"
form = the name of your form field = the name of your field