function formHandler(form){
var URL = document.form.category.options[document.form.category.selectedIndex].value;
window.location.href = URL;
}
function formHandler2(form2){
var URL = document.form2.month.options[document.form2.month.selectedIndex].value;
window.location.href = URL;
}