change the following code:
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__1" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Resume
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__1" value="Resume" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","Resume"))) {echo "checked=\"checked\"";} ?> tabindex="10">
</label>
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__2" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Coaching
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__2" value="Coaching" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","Coaching"))) {echo "checked=\"checked\"";} ?> tabindex="20">
</label>
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__3" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Both
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__3" value="Both" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","Both"))) {echo "checked=\"checked\"";} ?> tabindex="30">
</label>
to:
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__1" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Resume
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__1" value="Resume" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","fieldset_group_Service_Interest"):""),"Resume"))) {echo "checked=\"checked\"";} ?> tabindex="10">
</label>
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__2" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Coaching
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__2" value="Coaching" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","fieldset_group_Service_Interest"):""),"Coaching"))) {echo "checked=\"checked\"";} ?> tabindex="20">
</label>
<label class="radioSublabel_Wide" for="fieldset_group_Service_Interest__3" onBlur="hideServerError('fieldset_group_Service_Interest__1_ServerError');"> Both
<input type="radio" name="fieldset_group_Service_Interest" id="fieldset_group_Service_Interest__3" value="Both" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("contactUs","fieldset_group_Service_Interest"):""),"Both"))) {echo "checked=\"checked\"";} ?> tabindex="30">
</label>
as far as ssending the email goes, does it redirect to the thankyou.php page?