I have made a workaround on the above.
But I have one minor challenge.
I can't get the answer option below "other" but only next to it.
Anyone an idea?
DemoSurvey:
here
<script type='text/javascript'>
/* Place option 5 at the end of the randomized list */
$(document).ready(function() {
//Answer 4 always before the other option
$('#javatbd986572X244X973SQ004').insertBefore('#javatbd986572X244X973other');
//Answer 5 always after other
$('#javatbd986572X244X973SQ005').insertAfter('#javatbd986572X244X973other');
});
</script>