Hi,
From what I can see, the problem comes from the CKEditor on your website.
Change the "editor" setting of the HikaShop configuration to use another editor and it should work.
Also, try to change the code:
$custom = preg_replace('#<script .*type="text/javascript" src=".*"></script>#iU', '', $custom);
to:
$custom = preg_replace('#<script .*(type="text/javascript")? src=".*"></script>#iU', '', $custom);
in the file administrator/components/com_hikashop/views/product/tmpl/variant.php and that should work even with CKEditor.