Change input text on registration page

by jelane20

HTML

<form onsubmit="return CheckForm()" method="POST" action="../r/register.asp?ievent=1115841&amp;lis=1&amp;kntae1115841=CC73BEDAFA0A403E86482C16C301C859" name="registrationForm" id="thisForm">
<input type="hidden" value="" name="multiRegistrationType" id="multiRegistrationType">
<input type="hidden" value="ievent=1115841&amp;lis=1&amp;kntae1115841=CC73BEDAFA0A403E86482C16C301C859" name="stateEventID" id="stateEventID">

<table width="500" cellspacing="0" cellpadding="3" border="0" align="center" style="BORDER:#ffffff 1px solid;">
	<tbody><tr>
		<td bgcolor="#ffffff" colspan="4"><b><font color="#FFFFFF">Please choose below:</font></b></td>
	</tr>
	<tr>
		<td valign="top" bgcolor="#ffffff" align="right" class="subheadertext" colspan="4"><a class="fafFormHelp" onclick="jsTools_popup('../includes/INC_help.asp?helpTopic=teams',350, 250); return false" href="#"><span class="small">Click here for help</span>&nbsp;<img border="0" src="../images/help_icon.gif"></a></td>
	</tr>

	
		<tr bgcolor="#eeeeee">
			<td valign="top" colspan="4"><input type="radio" onclick="javascript:teamAction('none')" value="none" name="teamAct">&nbsp;<b>Join</b> as an Individual</td>
		</tr>
		<tr>
			<td valign="top" colspan="4">
			<a onclick="javascript:teamAction('none')" style="float: left; padding-right: 29px;" target="_blank" href="#"><img width="87px" height="78px" alt="Register Individual" src="/AccountTempFiles/account904127/images/SWSsparkleandsplash1fer.png"></a><strong>I want to join as an <i><span style="color: #D91B5C;">individual attendee. </span></i></strong>
			</td>
		</tr>
	
			<tr bgcolor="#eeeeee">
				<td valign="top" colspan="4"><input type="radio" onclick="javascript:teamAction('individual')" value="" name="teamAct">&nbsp;<b>Register</b> Multiple People</td>
			</tr>
			<tr>
				<td valign="top" colspan="4">
				<a onclick="javascript:teamAction('individual')" style="float: left; padding-right: 29px;" target="_blank" href="#"><img width="141px" height="72px" alt="Register...

JavaScript

$('form#thisForm table tbody tr td b').hide();
$('form#thisForm table tbody tr td')
  .contents()
  .filter(function() {
    return this.nodeType == Node.TEXT_NODE;
  }).wrap('<p/>');
$('form#thisForm table tbody tr td p').css('display', 'inline');
$('form#thisForm table tbody tr td p:contains("as an Individual")').text('new text');