diff --git a/form_builder.js b/form_builder.js
index f7e0bb3..3808281 100644
--- a/form_builder.js
+++ b/form_builder.js
@@ -91,6 +91,11 @@ Drupal.behaviors.formBuilder = function(context) {
     stop: Drupal.formBuilder.stopDrag
   });
 
+  // Drupal 6 jQuery UI fix to prevent selecting text in Chrome while dragging.
+  $elements.mousedown(function(e) {
+    e.preventDefault();
+  });
+
   // This sets the height of the drag target to be at least as high as the field
   // palette so that field can be more easily dropped into an empty form.  IE6
   // does not respect min-height but does treat height in the same manner that
