Magento collections contain the protected method _toOptionArray which can be exposed to public methods of the collection. The method accepts two arguments, the first becomes the key of the resultant array, and the second becomes the value.
<?php public function toOptionArray(){ return $this->_toOptionArray('business_type_id', 'title'); }