Hello Angelo,
You can solve this issue by replacing the lines in this below files.
plugins/sellacious/fieldtypeforms/fieldtypeforms.php in this file find the below lines
$opt_xml = $fieldXml->addChild('option', htmlentities($option));
$opt_xml->addAttribute('value', htmlentities($option));
and replace them with these lines.
$opt_xml = $fieldXml->addChild('option', htmlspecialchars($option, ENT_COMPAT, 'UTF-8'));
$opt_xml->addAttribute('value', htmlspecialchars($option, ENT_COMPAT, 'UTF-8'));
This issue will be resolved after this.
Thank you
-Team Sellacious