function change_site(opt) {
//alert(opt.options[opt.selectedIndex].value);
if(opt.selectedIndex != 0) {
//window.open(opt.options[opt.selectedIndex].value, "toto");
document.location = opt.options[opt.selectedIndex].value;
}
}
