POSTしたい場合は、JSでPOSTする前にdisabledをfalseにしてからPOSTするか、
disabled属性ではなく、readonly属性に変更するという2種類の対応方法がある。
例)
<form action="hoge.php" method="post">
<input type="text" name="disabled" disabled="true" /> ← こっちはPOSTされない
<input type="text" name="readonly" readonly="readonly" /> ← こっちはPOSTされる
</form>