How to set blank option for select box in cakephp ?

there is an attribute “empty” in cakephp for adding blank option

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