How to set option selected for select box in cakephp ?

there is an attribute “selected” in cakephp for set selected value

<?php echo $this->Form->input('field_name', array(			
			'empty' => 'Default Title',
			'options' => $aOptions,
			'label' => 'Label',
			'selected' => $selected_id; 
?>