According to HTML specs, the select tag in HTML doesn\'t have a readonly attribute, only a disabled attribute. So if you want to keep
select
readonly
disabled
Simply, remove the disabled attribute before submit the form.
$('form').submit(function () { $("#Id_Unidade").attr("disabled", false); });