Ok, I spent yesterday going over 3000 lines of php code (my god, it was full of stars)
and i wanna do something fancy and fun today. And yes i already tried wearing
my jelly shoes and roach clip earrings while blasting some WHAM! and it just didnt cut it so....

Really though, I wanna spice up my forms and do something new .... im making
one of those form fields that automatically suggests things based on what you
are typing.. here is my plan of attack:
1) Trap the keypress of the form field with client side javascript.
2) on that event do a (AJAX?) call to a php script that returns a select * from table where
somefield like '%letterstypedsofar%' record
3) populate the dropdown with suggestions with javascript....?
----------------------------
Where do i start reading on this one? Is Ajax the right way to call for the record from the query?
How do i draw suggestions in a drop down from a form field. Sorry I know I could google this but
maybe a few keywords to send me in the right direction through the serps?