A simple way to do it is to create a separate drop down for the hour, minute, AM/PM. Then, in your ASP page, you would combine those three fields before entering them into the date field of your database. For example, in the ASP page:
strTime = Request.Form("hour") & ":" &...