as far as know, there's no tag to disable this. You might try instead of doing
echo '<input type="text" name="some"/>';
do
echo '<input type="text" name="some['.mt_rand().']"/>';
and use reset() on $_POST['some'] to retrieve the value. It's a weird hack, but it might work