Index: tests/regressiontests/forms/widgets.py
===================================================================
--- tests/regressiontests/forms/widgets.py	(Revision 6470)
+++ tests/regressiontests/forms/widgets.py	(Arbeitskopie)
@@ -392,6 +392,17 @@
 <option value="4">4</option>
 </select>
 
+You can disable some choices by passing a subset of choices:
+>>> w = Select(choices=get_choices(), disable=[0])
+>>> print w.render('num', 2)
+<select name="num">
+<option value="0" disabled="disabled">0</option>
+<option value="1">1</option>
+<option value="2" selected="selected">2</option>
+<option value="3">3</option>
+<option value="4">4</option>
+</select>
+
 # NullBooleanSelect Widget ####################################################
 
 >>> w = NullBooleanSelect()
@@ -522,7 +533,18 @@
 <option value="3">3</option>
 </select>
 
+You can disable a subset of choices:
+>>> w = SelectMultiple(choices=[(1, 1), (2, 2), (3, 3)], disable=[1])
+>>> print w.render('nums', None)
+<select multiple="multiple" name="nums">
+<option value="1" disabled="disabled">1</option>
+<option value="2">2</option>
+<option value="3">3</option>
+</select>
+
+
 If 'choices' is passed to both the constructor and render(), then they'll both be in the output:
+>>> w = SelectMultiple(choices=[(1, 1), (2, 2), (3, 3)])
 >>> print w.render('nums', [2], choices=[(4, 4), (5, 5)])
 <select multiple="multiple" name="nums">
 <option value="1">1</option>
Index: django/newforms/widgets.py
===================================================================
--- django/newforms/widgets.py	(Revision 6470)
+++ django/newforms/widgets.py	(Arbeitskopie)
@@ -171,22 +171,25 @@
         return u'<input%s />' % flatatt(final_attrs)
 
 class Select(Widget):
-    def __init__(self, attrs=None, choices=()):
+    def __init__(self, attrs=None, choices=(), disable=()):
         super(Select, self).__init__(attrs)
         # choices can be any iterable, but we may need to render this widget
         # multiple times. Thus, collapse it into a list so it can be consumed
         # more than once.
         self.choices = list(choices)
-
+        self.disable = set(disable)
+        
     def render(self, name, value, attrs=None, choices=()):
         if value is None: value = ''
         final_attrs = self.build_attrs(attrs, name=name)
         output = [u'<select%s>' % flatatt(final_attrs)]
         str_value = force_unicode(value) # Normalize to string.
         for option_value, option_label in chain(self.choices, choices):
+            disable_html = (option_value in self.disable) and ' disabled="disabled"' or ''
             option_value = force_unicode(option_value)
             selected_html = (option_value == str_value) and u' selected="selected"' or ''
-            output.append(u'<option value="%s"%s>%s</option>' % (escape(option_value), selected_html, escape(force_unicode(option_label))))
+            output.append(u'<option value="%s"%s%s>%s</option>' % (
+                escape(option_value), selected_html, disable_html, escape(force_unicode(option_label))))
         output.append(u'</select>')
         return u'\n'.join(output)
 
@@ -210,20 +213,23 @@
         return {u'2': True, u'3': False, True: True, False: False}.get(value, None)
 
 class SelectMultiple(Widget):
-    def __init__(self, attrs=None, choices=()):
+    def __init__(self, attrs=None, choices=(), disable=()):
         super(SelectMultiple, self).__init__(attrs)
         # choices can be any iterable
         self.choices = choices
-
+        self.disable = set(disable)
+        
     def render(self, name, value, attrs=None, choices=()):
         if value is None: value = []
         final_attrs = self.build_attrs(attrs, name=name)
         output = [u'<select multiple="multiple"%s>' % flatatt(final_attrs)]
         str_values = set([force_unicode(v) for v in value]) # Normalize to strings.
         for option_value, option_label in chain(self.choices, choices):
+            disable_html = (option_value in self.disable) and ' disabled="disabled"' or ''
             option_value = force_unicode(option_value)
             selected_html = (option_value in str_values) and ' selected="selected"' or ''
-            output.append(u'<option value="%s"%s>%s</option>' % (escape(option_value), selected_html, escape(force_unicode(option_label))))
+            output.append(u'<option value="%s"%s%s>%s</option>' % (
+                escape(option_value), selected_html, disable_html, escape(force_unicode(option_label))))
         output.append(u'</select>')
         return u'\n'.join(output)
 
Index: docs/newforms.txt
===================================================================
--- docs/newforms.txt	(Revision 6454)
+++ docs/newforms.txt	(Arbeitskopie)
@@ -1660,6 +1660,23 @@
         url = forms.URLField()
         comment = CommentInput()
 
+Select Widgets
+--------------
+
+The constructor of ``Select`` and the ``SelectMultiple`` widgets can
+be given a subset of choices which should be disabled.
+
+Example::
+
+    >>> w = SelectMultiple(choices=[(1, 1), (2, 2), (3, 3)], disable=[1])
+    >>> print w.render('nums', None)
+    <select multiple="multiple" name="nums">
+     <option value="1" disabled="disabled">1</option>
+     <option value="2">2</option>
+     <option value="3">3</option>
+    </select>
+
+
 Generating forms for models
 ===========================
 
