I want to make a select tag in a JSP, where the options are an Enumeration (for example, all US States). Is their a tag in JSTL or a standard tag that can do this, without manually iterating through the list?
There isn't in JSTL. However many frameworks provide such additional tags:
Struts2 - <s:select>
Spring MVC - <form:select>
<h:selectOneMenu>