    jQuery(document).ready(function() {
        jQuery('#preFeature').siteFeature({
            endCreateFunction: function(options) {
                $('#' + options.txtBoxIdPrefix + 'Container').children('div').each(function() {
                    $(this).children('span').remove();
                    $(this).children('div').replaceWith($(this).children('div').html());
                });
            }
        });
    });

