Please refer this link
Please help me to make this listbox readonly. Please do not use disable attribute as I need to post it later.
<select size=4 multiple="multiple">
<option selected=selected>Volvo</option>
<option selected=selected>Saab</option>
<option selected=selected>Mercedes</option>
<option selected=selected>Audi</option>
</select>
select. Just display it. If you need a static value posted with the form, use ainput type="hidden"or include it in the action route for the form. (Note: Both of those options do allow a savvy user to change the value. If the user must not change the value then keep it server-side.)