<form>
<select onchange="this.form.quantity=this.options[this.selectedIndex].getAttribute('quantity');this.form.price=this.options[this.selectedIndex].getAttribute('price'); ">
<option quantity="数量" price="单价">名称</option>
</select>
<input name="quantity">
<input name="price">
</form>