diff --git a/modules/search/views_handler_filter_search.inc b/modules/search/views_handler_filter_search.inc
index 7430494..a9190b1 100644
--- a/modules/search/views_handler_filter_search.inc
+++ b/modules/search/views_handler_filter_search.inc
@@ -29,11 +29,27 @@ class views_handler_filter_search extends views_handler_filter {
     $options = parent::option_definition();
 
     $options['operator']['default'] = 'optional';
+    $options['remove_score'] = array('default' => FALSE, 'bool' => TRUE);
 
     return $options;
   }
 
   /**
+   * Add an option to remove search scores from the query.
+   */
+  function options_form(&$form, &$form_state) {
+    parent::options_form($form, $form_state);
+
+    $form['remove_score'] = array(
+      '#type' => 'checkbox',
+      '#title' => t('Remove search score from query'),
+      '#description' => t('Check this box to remove the search score from the query.'),
+      '#default_value' => $this->options['remove_score'],
+    );
+  }
+
+
+  /**
    * Provide simple equality operator
    */
   function operator_form(&$form, &$form_state) {
@@ -131,7 +147,9 @@ class views_handler_filter_search extends views_handler_filter {
       $join->construct('search_total', $search_index, 'word', 'word');
       $search_total = $this->query->add_relationship('search_total', $join, $search_index);
 
-      $this->search_score = $this->query->add_field('', "SUM($search_index.score * $search_total.count)", 'score', array('aggregate' => TRUE));
+      if (!$this->options['remove_score']) {
+        $this->search_score = $this->query->add_field('', "SUM($search_index.score * $search_total.count)", 'score', array('aggregate' => TRUE));
+      }
 
       if (empty($this->query->relationships[$this->relationship])) {
         $base_table = $this->query->base_table;
