/**
   * @author: Rodrigo Bartels
   * Date: October 3, 2008.
   * Metadata Utilitary Functions.
*/
function populateAgeTo(ageFromId,ageToId){
    var ageFrom = document.getElementById(ageFromId);
    var initialValue = parseInt(ageFrom.value)+1;    
    var ageTo = document.getElementById(ageToId);
    ageTo.options.length=0
    for(initialValue; initialValue < 25; initialValue++){
        ageTo.options[ageTo.options.length] = new Option(initialValue);
    }    
}