Hi All, i have a combo-box which contains values, I want when i click on the particular value it's value also display on a text box. the value of the combo are comming from the database. please help to do it. Thanks. Edit/Delete Message
When you say values I assume you do mean value attributes, i.e. <option value='x'> Try this. Both elements must be in the same form. <form> <select onchange="selectedValue.value=this.value"> . . </select> <input type='text' name='selectedValue'> </form> Code (markup):