public function getChoices()
    {
        $choices = parent::getChoices();

        if (count($choices) > 0 && isset($choices['']) && $choices[''] == '') {
            $choices[''] = ' ';
        }

        return $choices;
    }