I am want set default value= ${theObject2.countryId}
<select id="locationCountry" style="padding-left: 2em" >
<option value="">Country</option>
<c:forEach items="${countrieDetail}" var="theObject" varStatus="theCount">
<option value="${theObject.countryId}" >${theObject.countryName}</option>
</c:forEach>
</select>