public static function renderHtmlAfterChange($changeElement, $targetElement)
{
$s = array();
$s[] = 'jQuery(document).ready(function() {';
$s[] = ' jQuery("' . $changeElement . '").on("change", function(e) {';
$s[] = ' jQuery("' . $targetElement . '").show();';
$s[] = ' })';
$s[] = '})';
Factory::getDocument()->addScriptDeclaration(implode("\n", $s));
}