function findIndexByValue(idselect,value){var options=document.getElementById(idselect).options;for(var i=0;i<options.length;++i){if(options[i].value==value)
return i;}
return-1;}