Index: components/select.inc
===================================================================
--- components/select.inc	(revision 237)
+++ components/select.inc	(working copy)
@@ -143,8 +143,6 @@
     '#required'      => $component['mandatory'],
     '#weight'        => $component['weight'],
     '#description'   => _webform_filter_descriptions($component['extra']['description']),
-    '#prefix'        => '<div class="webform-component-'. $component['type'] .'" id="webform-component-'. $component['form_key'] .'">',
-    '#suffix'        => '</div>',
   );
 
   // Convert the user-entered options list into an array.
@@ -191,6 +189,9 @@
       $form_item['#type'] = 'radios';
     }
   }
+  $form_item['#prefix'] = '<div class="webform-component-'. $form_item['#type'] .'" id="webform-component-'. $component['form_key'] .'">';
+  $form_item['#suffix'] = '</div>';
+
   return $form_item;
 }
 
