Gracias....cheque eso...y el codigo para el combo al final me kedo así y ya funciono:
Cita: <SELECT name="tipo_cambio">
<% String tipoSel=vConsultaUser.get(2).toString().trim();%>
<OPTION value=""><Seleccione></OPTION>
<OPTION value="us"
<%if (tipoSel.equals("us"))
out.write("SELECTED");%>>General</OPTION>
<OPTION value="se"
<%if (tipoSel.equals("se"))
out.write("SELECTED");%>>Secretaria</OPTION>
<OPTION value="as"
<%if (tipoSel.equals("as"))
out.write("SELECTED");%>>Asistente</OPTION>
<OPTION value="ge"
<%if (tipoSel.equals("ge"))
out.write("SELECTED");%>>Gerente</OPTION>
</SELECT>
Gracias por tu contestación GreenEyed!!!!