Use createNamedBuilder, for instance:
$formplace = $this->get('form.factory')->createNamedBuilder('locationform', 'form', $place, array())
->setAction($this->generateUrl('booster_bici_reg_clubes'))
->setMethod('GET')
->add('place', 'auto_place', array('label' => 'Filtrar por ubicación'))
->add('submit','submit',array('label' => 'Buscar'))
->getForm();
Here the name is locationform.