function help_tip_focus(event){
    element = event.element();
    element.up('.help-wrapper').select('.help-tip').each(function (el){
            el.style.display = 'block';
    })
}
function help_tip_blur(event){
    element = event.element();
    element.up('.help-wrapper').select('.help-tip').each(function (el){
            el.style.display = 'none';
    })
}
addDOMLoadEvent(function() {
    $$('.help-wrapper input').each(function (el){
            el.observe('focus', help_tip_focus);
            el.observe('blur', help_tip_blur);
    });
    $$('.help-wrapper select').each(function (el){
            el.observe('focus', help_tip_focus);
            el.observe('blur', help_tip_blur);
    })
});
