假设这里是form1中的东东
<html:select property="prepId" tabindex="1" onchange="document.frmbase.submit()"/>
假设这里是form2中的东东
<text type="hidden" name="prepId" value="">       你要把<html:select property="prepId" tabindex="1" onchange="document.frmbase.submit()"/>
这个select控件的onchange事件单独写个function来处理,如
<html:select property="prepId" tabindex="1" onchange="javascript:doPost()"/>
然后在jsp中写一个javascript的function ,如:
function doPost()
{
  document.form2.prepId.value=document.form1.select控件的名字.value;//这里应该是那一大堆的xxx.options[xxx.selectedindex].value,懒得写了:-)。
  document.form1.submit();
}
这样不就行了?