Inspired from the other community wikis, I'm interested in hearing about the lesser known Kohana tips, tricks and features.
This is a community wiki.
$options = ORM::factory('model')
->order_by('title','ASC')
->find_all()
->as_array('id','title');
$select = Form::select('name', $options);
It should be noted this is not restricted to the ORM and can be used on all database results (they all support as_array). See the database results information for more details.
If you want to add a default option:
$options = Arr::merge(array('Please select a value.'), $options);