  $(document).ready(function(){
                $("fieldset#parentalConsent").hide();
                $(".form-hide").hide();
				 if ($('input[name=jstatus]:checked').val() == "a child/young person") {
                        $("fieldset#parentalConsent").show();
                    }
				$("input[name=jstatus]").click(function(){
                    if ($('input[name=jstatus]:checked').val() == "a child/young person") {
                        $("fieldset#parentalConsent").show();
                    }
                    else {
                        $("fieldset#parentalConsent").hide();
                    }
                });

$("h2.toggle-text").hover().css("cursor","pointer");

$("h2.toggle-text").click(function()
					{
					
						$(this).next("p").toggle();
					
					});

            })

