diff --git a/docs/newforms.txt b/docs/newforms.txt
index ec721effc4..9e8454cd9b 100644
--- a/docs/newforms.txt
+++ b/docs/newforms.txt
@@ -282,12 +282,41 @@ example, in the ``ContactForm`` example, the fields are defined in the order
``subject``, ``message``, ``sender``, ``cc_myself``. To reorder the HTML
output, just change the order in which those fields are listed in the class.
-Using forms to validate data
-----------------------------
+More granular output
+~~~~~~~~~~~~~~~~~~~~
-In addition to HTML form display, a ``Form`` class is responsible for
-validating data.
+The ``as_p()``, ``as_ul()`` and ``as_table()`` methods are simply shortcuts for
+lazy developers -- they're not the only way a form object can be displayed.
+To display the HTML for a single field in your form, use dictionary lookup
+syntax using the field's name as the key, and print the resulting object::
+
+ >>> f = ContactForm()
+ >>> print f['subject']
+
+ >>> print f['message']
+
+ >>> print f['sender']
+
+ >>> print f['cc_myself']
+
+
+Call ``str()`` or ``unicode()`` on the field to get its rendered HTML as a
+string or Unicode object, respectively::
+
+ >>> str(f['subject'])
+ ''
+ >>> unicode(f['subject'])
+ u''
+
+The field-specific output honors the form object's ``auto_id`` setting::
+
+ >>> f = ContactForm(auto_id=False)
+ >>> print f['message']
+
+ >>> f = ContactForm(auto_id='id_%s')
+ >>> print f['message']
+
More coming soon
================
@@ -297,6 +326,9 @@ http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms/t
-- the unit tests for ``django.newforms``. This can give you a good idea of
what's possible.
+If you're really itching to learn and use this library, please be patient.
+We're working hard on finishing both the code and documentation.
+
Using forms with templates
==========================