// JavaScript Document
     
  $(document).ready(function(){
  
  
  
     
  
  $(".check :checkbox").each(function(){
    
    if($(this).attr('checked')){
      $(this).parent().next('div').show(); 
     }
     else{    
     $(this).parent().next('div').hide(); 
     }
  
  });
    
 
   //$("div.inp-sml").hide();
    
  $(".check :checkbox").click(function()
  {
      
     if($(this).attr('checked')){
     $(this).parent().next('div').show();     
     }
     else{
     $(this).parent().next('div').children('input').val('');  
     $(this).parent().next('div').hide();  
     }
    
     
    
   
  // $(".inp-sml").show();
    //console.log( $(this).next("div"));
  });
  
  
   $(".inp-sml input").keypress(function(event) {

      if (event.charCode && (event.charCode < 48 || event.charCode > 57)) {

        event.preventDefault();

      }

      });

    

  
  
  
});
  
