The slight problem with that solution is that it uses an IE only construct, a select element does not have a value in standard HTML. The general construct would be:
Code:
<select name="TID" id="TID" onchange="window.location='pageurl_edit.asp?TID=' + this.options[this.selectedIndex].value + '&uid=<%=uid%>';">
--
Joe