--- betterselect.module	2008-09-10 20:51:24.000000000 -0400
+++ betterselect_new.module	2008-09-15 07:46:49.000000000 -0400
@@ -43,10 +43,12 @@ function betterselect_admin_settings() {
  * Implementation of hook_elements().
  */
 function betterselect_elements() {
-  $type = array();
-  $type['select']['#process'] = array('betterselect_process' => array());
-
-  return $type;
+  if (arg(0) != 'admin' && arg(2) != 'taxonomy') {
+    $type = array();
+    $type['select']['#process'] = array('betterselect_process' => array());
+  
+    return $type;
+  }
 }
 
 /**
