Hello,
You have to use "onclick" with some parameters in order to redirect when your customer click on the Guest checkbox.
Try to use this code IN  <fieldset class="input"> like this :
...
  $doc->addScriptDeclaration("\n<!--\n".$js."\n//-->\n");
  echo JHTML::_('hikaselect.radiolist',  $values, 'data[register][registration_method]', ' onchange="displayRegistration(this)"', 'value', 'text', $defaultSelection, false, false, true );
?>
			<div class="crisregister">
				<input class="crisregister" type="radio" name="data[register][registration_method]" id="data[register][registration_method]0" value="0" onclick="window.location.href='index.php?option=com_fabrik&view=form&formid=1&Itemid=305'"/>Guest
			</div>
      </fieldset>
...
And of course, remove this line :
<div class="crisregister"><a href="index.php?option=com_fabrik&view=form&formid=1&Itemid=305">Guest</a></div>
Hope this will fit your needs.
Regards