public object ResetAdvancedOptionValue(string categoryId, string optionId)
        {
            var defaultValue = _profileSettingsService.GetAdvancedOptionDefaultValue(categoryId, optionId);

            _profileSettingsService.DeleteValue(ProfileSettingsCategories.AdvancedOptions, optionId);

            return(defaultValue);
        }