Index: betterselect.install
===================================================================
--- betterselect.install	(revision 134)
+++ betterselect.install	(working copy)
@@ -8,5 +8,6 @@
   variable_del('betterselect_scroll');
   variable_del('betterselect_save_lineage');
   variable_del('betterselect_node_form_only');
+	variable_del('betterselect_content_types');
 }
 
Index: betterselect.module
===================================================================
--- betterselect.module	(revision 132)
+++ betterselect.module	(working copy)
@@ -65,6 +65,19 @@
     '#description' => t('Add an extra div to each betterselect option, with a class indicating depth in taxonomy hierarchy. Good for styling parent/child.'),
     '#default_value' => variable_get('betterselect_add_depth_classes', FALSE),
   );
+	
+	$form['betterselect_contenttypes'] = array(
+    '#type' => 'fieldset',
+    '#title' => t('Content type options'),
+  );
+		
+		$form['betterselect_contenttypes']['betterselect_content_types'] = array(
+			'#type' => 'checkboxes',
+			'#options' => array_map('check_plain', node_get_types('names', NULL, TRUE)),
+			'#title' => t('Disable for content types'),
+			'#description' => t('Select the content types for which to disable better select.'),
+			'#default_value' => variable_get('betterselect_content_types', array()),
+		);
 
   return system_settings_form($form);
 }
@@ -84,7 +97,9 @@
  */
 function betterselect_process($element, $edit, $form_state, $complete_form) {
   if (isset($element['#multiple']) && $element['#multiple'] == TRUE && !(variable_get('betterselect_node_form_only', FALSE) == TRUE && $complete_form['#id'] != 'node-form')) {
-
+		if(array_key_exists($complete_form['type']['#value'], array_filter(variable_get('betterselect_content_types', array())))) {
+			return $element;
+		}
     // If we're dealing with taxonomy, fix the option titles.
     if (is_object($element['#options'][0])) {
       // Build new array of options in format that theme_checkboxes expects.
