Multichoice field - edit allow user value text

When using a multichoice field and selecting allow user value, the standard text for the "other" option is "Specify your own value". I'd like to be able to customise this text - is this possible?

Thanks :smile:

Dear @Chris,
Are we talking about Multichoice field in Checkboxes mode?

While this message is from SharePoint, you can try the following JavaScript to modify the label:

fd.spRendered(function(){
  $('.fd-fill-in-choice label').text('Your value goes here:');
});