Index: webform.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/webform.module,v
retrieving revision 1.196.2.3
diff -u -r1.196.2.3 webform.module
--- webform.module	11 Mar 2010 01:40:15 -0000	1.196.2.3
+++ webform.module	12 Mar 2010 10:00:22 -0000
@@ -1502,6 +1502,13 @@
   }
 }
 
+function _webform_client_form_title_display($element) {
+  if (isset($element['#title_display']) && $element['#title_display'] === 'none') {
+    $element['#title'] = NULL;
+  }
+  return $element;
+}
+
 function webform_client_form_validate($form, &$form_state) {
   $node = node_load($form_state['values']['details']['nid']);
 
Index: components/select.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/select.inc,v
retrieving revision 1.39.2.4
diff -u -r1.39.2.4 select.inc
--- components/select.inc	11 Mar 2010 01:40:15 -0000	1.39.2.4
+++ components/select.inc	12 Mar 2010 10:00:23 -0000
@@ -22,6 +22,7 @@
       'items' => '',
       'multiple' => NULL,
       'aslist' => NULL,
+      'title_display' => 0,
       'optrand' => 0,
       'other_option' => NULL,
       'other_text' => t('Other...'),
@@ -95,6 +96,14 @@
     '#description' => t('If allowing other options, enter text to be used for other-enabling option.'),
     '#access' => module_exists('select_or_other'),
   );
+  $form['display']['title_display'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Hide the title'),
+    '#default_value' => $component['extra']['title_display'],
+    '#return_value' => 'none',
+    '#description' => t('This hides the title of the form component when they are displayed in the form.'),
+    '#parents' => array('extra', 'title_display'),
+  );
   $form['display']['optrand'] = array(
     '#type' => 'checkbox',
     '#title' => t('Randomize options'),
@@ -249,6 +258,10 @@
     }
   }
 
+  // Mimics Drupal 7 #title_display option.
+  $element['#pre_render'] = array('_webform_client_form_title_display');
+  $element['#title_display'] = empty($component['extra']['title_display']) ? NULL : $component['extra']['title_display'];
+  
   $element['#prefix'] = '<div class="webform-component-' . $element['#type'] . '" id="webform-component-' . $component['form_key'] . '">';
   $element['#suffix'] = '</div>';
 
