protected function _initData()
	{
		$reference = $this->getOption('reference');
		
		$rows = Atomik_Model::findAll($reference->target);
		$this->_data = array(0 => '--');
		foreach ($rows as $row) {
			$this->_data[$row->getPrimaryKey()] = (string) $row;
		}
	}