select_form method only works if form has attribute name. In your case form has id which is not handled by select_form. You should use the number of ocurrence of this form within html page. It would be like this:
Code:
br.select_form(id=1)
Experiment with numbers (starting with 0) until it starts working.