"http://www.w3.org/TR/html4/loose.dtd"
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
titlehello,yang/title
/head
body
script type="text/javascript"
function change(a){
var newp = 200*a
var price = document.getElementById("price");
price.setAttribute("value",newp)
}
/script
select onChange="change(this.value)"
option value=11/option
option value=22/option
option value=33/option
/selectinput type="text" value="200" id=price
/body
/html