Hi,
I wonder why you didn't answer the initial questions?
But as an answer:
You can't add more than one "Other" in a multiple question.
You have to use a question of type "Multiple choice with comments" and remove the not desired "Other"-fields.
Insert this in the source code of your question
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var thisQuestion = $('#question{QID}');
// Remove some text inputs
$('.checkbox-text-item:eq(x) .comment-item', thisQuestion).remove();
$('.checkbox-text-item:eq(y) .comment-item', thisQuestion).remove();
});
</script>
Replace "
eq(x),
eq(y)" by the respective subquestions indexes where you want to remove the text box.
The counting starts at 0.
Joffm