JSP code change
I am new to JSP, i am using the some tags here, It is having some problem with syntax, can you please correct it and give me?
<html:select name="manageFeedbackForm" onchange="temp()" property="feedbackCategory.emailId" styleClass="text">
<html:option value="-1">Select</html:option>
<%
String referer = request.getHeader("Referer");
for(int i=0; i<feedbackList.size();i++)
{
%>
<html:options collection="feedbackList" property="emailId" labelProperty="categoryDesc" ><%if((String)feedbackList.get(i).equals(referer)){%>selected<%}%>/>
<%}%>
</html:select>

