Try:
br.select_form(nr=0)
to select the first form
In Mechanize source,
def select_form(self, name=None, predicate=None, <b>nr=None</b>):
"""
...
nr, if supplied, is the sequence number of the form (where 0 is the
first).
"""