参考这个LIVE DEMO
Javascript:
var dropDown = document.getElementById("dropdown")
dropDown.onchange = function() {
var dropDownValue = this.options[this.selectedIndex];
dropDown.style.display = 'none';
var textBox = document.getElementById("textbox");
textBox.style.display = 'block';
textBox.value = dropDownValue.text;
};
HTML:
<select style="height:25px;" id="dropdown">
<option selected>Select item</option>
<option value="1" >Gold cad.</option>
<option value="2">Gold rawa</option>
<option value="3">Silver 9999</option>
<option value="4">Silver chorsa</option>
</select>
<input type="text" id="textbox" class="inactive" />
CSS:
.inactive {
display: none;
}