I want to create a command from the option and go to javascript then display it in the input box.
<select id="change">
<option>Cat</option>
<option>Dog</option>
<option>Fish</option>
</select>
<script type="text/javascript">
show('Cat');
</script>
<input/>
when I choose one of the options, then the contents automatically in the javascript changed. and the reload function runs then displays the result in the input box.