$(document).ready(
	function() {
		$("input[name='legal_person_register']").click(
        function(){
            if($("input[name='legal_person_register']:checked").val() > 0){
                $("#onlyCompany").show();
				$("#reg1").hide();
            } 
            else {
                 $("#onlyCompany").hide();
				 $("#reg1, #reg2").show();
            }
        }); 
        
        $("input[name='student']").click(
        function(){
             if($("input[name='student']").is(':checked')){
                $("#reg3").show();
             } else {
                 $("#reg3").hide();
             }
        });	
        
	}
    
  
);
