Take the value of the selected combo box [get it after the form submit through request parameter], then create a request dispatcher if you want to forward or do a redirect to the jsp based on the value of the selected combo box. I mean by conditionally
Code:
if(combo.equals("one"))
response.sendRedirect(..);
else
response.sendRedirect(..);
- Rakesh