
function checkValue(form)
{

   if ( form.TNC.checked == false )
    {
        alert ( "Please tick the box, if you've read and agreed to our Terms & Conditions" );
        valid = false;
    }

  
  else
  {
       
     form.submit();

  }
   
}


//-->