私はフォームのロード時にSQL dbからの値で満たされているjspに1つのコンボボックスを持っています
<td width="150">
<%
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection cn = DriverManager.getConnection("jdbc:odbc:mydsn");;
Statement s = cn.createStatement();
ResultSet re = s.executeQuery("select distinct From1 from station");
%>
<select>
<%
while (re.next()) {
String un = re.getString("From1");
%>
<option value="<%= un%>"><%= un%></option>
<%
}
%>
</select>
</td>
その下に別のコンボボックスがあり、最初のコンボボックスで選択した値に基づいて入力したい...コードのヘルプをお願いします