diff --git a/fz152.module b/fz152.module
index 38136d6..0befe11 100644
--- a/fz152.module
+++ b/fz152.module
@@ -57,7 +57,7 @@ function fz152_menu() {
     }
   }
 
-  if(variable_get_value('fz152_enable') && variable_get_value('fz152_privacy_policy_page_enable')) {
+  if (variable_get_value('fz152_enable') && variable_get_value('fz152_privacy_policy_page_enable')) {
     $path = variable_get_value('fz152_privacy_policy_page_path');
     $title = variable_get_value('fz152_privacy_policy_page_title');
     $items[$path] = array(
@@ -115,15 +115,25 @@ function fz152_form_alter(&$form, &$form_state, $form_id) {
       }
 
       // Finally we add checkbox.
-      $form['fz152_agreement'] = array(
-        '#type' => 'checkbox',
-        '#required' => TRUE,
-        '#title' => variable_get_value('fz152_checkbox_title'),
-        // HTML5 support.
-        '#attributes' => array(
-          'required' => 'required',
-        ),
-      );
+      $is_checkbox = variable_get_value('fz152_is_checkbox');
+      if ($is_checkbox) {
+        $form['fz152_agreement'] = array(
+          '#type' => 'checkbox',
+          '#required' => TRUE,
+          '#title' => variable_get_value('fz152_checkbox_title'),
+          // HTML5 support.
+          '#attributes' => array(
+            'required' => 'required',
+          ),
+        );
+      }
+      else {
+        $form['fz152_agreement'] = array(
+          '#name' => 'fz152-agreement',
+          '#type' => 'item',
+          '#markup' => variable_get_value('fz152_checkbox_title'),
+        );
+      }
 
       if ($checkbox_weight) {
         $form['fz152_agreement']['#weight'] = $checkbox_weight;
diff --git a/fz152.variable.inc b/fz152.variable.inc
index 76ca84d..cd3f57c 100644
--- a/fz152.variable.inc
+++ b/fz152.variable.inc
@@ -44,6 +44,15 @@ function fz152_variable_info($options) {
     'localize' => TRUE,
   );
 
+  $variables['fz152_is_checkbox'] = array(
+    'type' => 'boolean',
+    'title' => t('Show text without checkbox', array(), $options),
+    'default' => TRUE,
+    'description' => t('You can show text without checkbox.', array(), $options),
+    'group' => 'fz152_settings',
+    'localize' => TRUE,
+  );
+
   $variables['fz152_checkbox_title'] = array(
     'type' => 'text',
     'title' => t('Checkbox title', array(), $options),
