JS is case sensitive Submit needs to be submit (something I missed) replace your function with:
function drive_onchange(Report_Drive)
{
alert ('the value you selected is ' + (document.Report_Drive.drive.value));
Report_Drive.submit();
}
/* here is the function you may want to ensure a selection is made
if(document.Report_Drive.drive.selectedIndex==0)
{
alert("You must make a selection to proceed");
document.Report_Drive.drive.focus();
return(false);
}
*/
Also replace the method in the form tag to "post"
I have to go now. i hope you get this resolved I have run your function, it works.
Wind is your friend
Matt