you can try the following:
echo $this->Form->input('group_id', array('type'=>'select','default'=>'2'));
resulting in the creation of the following HTML:
<option value="2" selected="selected">Managers</option>
Now the two option is displayed instead of any other.
benjamin
source share