I've got a model as described below :
![http://yuml.me/diagram/class/[Product]0..*-1[Brand]](http://i.stack.imgur.com/ui8mk.png)
I've also got a form to create a new product with a field entity building a dropdown list containing all the Brands.
Now I want to add a value "Other" in this list in order to allow the user to specify the Brand manually in another text field.
The question is: is there a clean way to manage this case (eg. adding the value "Other" in the list, which is not an entity and get the form validation to work) with Symfony2 forms?