By "remote connection" I assume you mean a database?
Assuming that your web app is patterned using best-practice MVC
patterns, it pretty straight-forward:
The page controller for the JSP will call a model class that retrieves the list from the DB.If the list is not already in a suitable format, such as a List implementation, it should re-format the data as suchThe page controller places the list in request scope as a scoped variable with a suitable nameOn the JSP, the JSTL and EL are used to iterate over the list and create the options for the select element If the options are to have values that are different from the displayed text, the list can be sets of name/value pairs.
[ May 16, 2007: Message edited by: Bear Bibeault ]