Hi Latha
I'm no expert on this, but I'd think you would need to pass your request with the selection made in the first drop-down to a
servlet, the servlet would in turn retrieve the appropriate data from the database based on that value, and then pass control to the
JSP page to render this retrieved data in the 2nd drop-down.
The retrieved database data could be stored by the servlet in a
Java Bean, and used as such (ie. jsp:useBean) in the JSP. Or the servlet could store the retrieved data as an Enumeration object of the database values, and the JSP could iterate through the Enumeration object to build the 2nd drop-down list. Presumably the Bean or Attribute objects would be in session scope as they are specific to a particular user.
Hope this helps