diff --git a/search404.module b/search404.module
index 9d62ecd..72b3902 100644
--- a/search404.module
+++ b/search404.module
@@ -164,6 +164,13 @@ function search404_page() {
     $form = drupal_get_form('search_form', NULL, $keys, 'node');
     $output = drupal_render($form) . drupal_render($results);
   }
+  
+  // Add custom text if exist
+  $search404_page_text = variable_get('search404_page_text', '');
+  if (!empty($search404_page_text)) {
+    $output = '<div class="search404-page-text">' . $search404_page_text . '</div>' . $output;
+  }
+  
   // If the user does not have search permissions $output would be empty.
   if ($output == '') {
     $output = t('The page you requested does not exist.');
