diff --git a/handlers/views_handler_filter.inc b/handlers/views_handler_filter.inc
index 707c7e2..1a4db42 100644
--- a/handlers/views_handler_filter.inc
+++ b/handlers/views_handler_filter.inc
@@ -469,6 +469,10 @@ class views_handler_filter extends views_handler {
 
     if ($form['#type'] == 'radios') {
       $form['#type'] = 'select';
+      // Clean $form['#options'] from html tags.
+      foreach ($form['#options'] as &$option) {
+        $option = strip_tags($option);
+      }
     }
     // Checkboxes don't work so well in exposed forms due to GET conversions.
     if ($form['#type'] == 'checkboxes') {
@@ -478,6 +482,10 @@ class views_handler_filter extends views_handler {
       if (!empty($this->options['expose']['multiple'])) {
         $form['#multiple'] = TRUE;
       }
+      // Clean $form['#options'] from html tags.
+      foreach ($form['#options'] as &$option) {
+        $option = strip_tags($option);
+      }
     }
     if (empty($this->options['expose']['multiple']) && isset($form['#multiple'])) {
       unset($form['#multiple']);
