function referralUpdate(thing)
{
  var other = $j(thing).parent('td').next('td').children('input');
  if ($j(thing).val() == 'other') {
    $j(other).show();
  } else {
	$j(other).hide();
  }
  
  /*var other = document.getElementById("ro");
  if (document.forms[0].referral.value != "other")
  {
    other.disabled = "disabled";
  }
  else
  {
    other.disabled = false;
  }*/
}
function industryUpdate(thing)
{
  var other = $j(thing).parent('td').next('td').children('input');
  if ($j(thing).val() == 'other') {
    $j(other).show();
  } else {
	$j(other).hide();
  }
}
function issueUpdate(thing)
{
  var other = $j(thing).parent('td').next('td').children('input');
  if ($j(thing).val() == 'other') {
    $j(other).show();
  } else {
	$j(other).hide();
  }
}
function notifiedUpdate(thing)
{
  var other = $j(thing).parent('td').next('td').children('input');
  if ($j(thing).val() == 'other') {
    $j(other).show();
  } else {
	$j(other).hide();
  }
}
function toolsUpdate(thing)
{
  var other = $j(thing).parent('td').next('td').children('input');
  if ($j(thing).val() == 'other') {
    $j(other).show();
  } else {
	$j(other).hide();
  }
}
