Ok second time ask for answer. So I have two table
Author and Book

Author table have two fields:
ID_name (number, primary key)
name (text)

Book table tree fields:
title (text)
ID (number)
ID_name (number)

Retationship between table Author and Book is between fields ID_name (from Author) and ID_name (from Book). RS is 1:M

Ok this is MSAccess DB but now I need make form in HTML for input information about book. How I can make an combobox with list all authors from table Author thus when client chose name from list then script automatic fill ID_author in field ID_name in Book table.

Please write source or detaile directed.

Thanks!