Using the disabled attribute prevents the user from changing the value, but does not submit the value with the form. For resolving we can use this method another input field and make it as Hidden
<select name="data" disabled="disabled">
<option value="datavalue" selected="selected">My Value</option>
....
</select>
<input type="hidden" name="data" value="datavalue" />