window.addEvent('load', function() {
	

	//add click event to the "add section" link
	$("vti_ninos").addEvent('change', function(event) {
		//event.stop();
		
    $("vti_ninos_edades").set('text','');
    
    ninos=$("vti_ninos").value;
    
    
    
    for(i=1;i<=ninos;i++)
    {
      
      text=new Element('input');
      
      text.setProperties({
        type: 'text',
        /*class: 'w-3 ' + 'n_'+i,*/
        name: 'edad_nino_'+i
      });
      
      text.addClass('w-3 ' + 'n_'+i);
      
      
      label=new Element('label',{'html':'Edad niņo '+i+' ' });
      br=new Element('br');
      
      
      $('vti_ninos_edades').adopt(label);
      $('vti_ninos_edades').adopt(text);
      $('vti_ninos_edades').adopt(br);
      
    }
      
		
	});

});
