JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" name="race" value="other" id="other" />Other, specify<br /><input style="display:none;" type="text" size="25" maxlength="25" id="otherrace" /><br />
<input type="radio" name="race" value="other" id="other2" />Other, specify<br /><input style="display:none;" type="text" size="25" maxlength="25" id="otherrace2" /><br />

JavaScript

$('#other').change(function(){ 
    $('#otherrace').toggle(this.checked);
    $('#otherrace2').toggle(!this.checked);
});

$('#other2').change(function(){ 
    $('#otherrace2').toggle(this.checked);
     $('#otherrace').toggle(!this.checked);
    
});