/**
  * Handle any section information on submission step 1
  * @return string
  */
 protected function _handleStep1($data)
 {
     // Page 1
     if (isset($data['series'])) {
         $this->waitForElementPresent('id=seriesId');
         $this->select('id=seriesId', 'label=' . $this->escapeJS($data['series']));
     }
     switch ($data['type']) {
         case 'monograph':
             $this->click('id=isEditedVolume-0');
             break;
         case 'editedVolume':
             $this->click('id=isEditedVolume-1');
             break;
         default:
             fatalError('Unknown submission type.');
     }
     parent::_handleStep1($data);
 }