Hello, I''m really new to Ruby On Rails and I was wondering if the following is possible (couldn''t find any information on this yet). Say I have the following (simplified) example: Tables: events, containing the fields: id, name, organiser_id organisers, containing the fields: id, name Now an event belongs_to :organiser and organiser has_many :events. If I create an event (using scaffolding), can organiser_id be an autocomplete field that autocompletes the organiser.name and fills in it''s id upon submit/create? Also, what if a user enters an organiser that does not exist (yet), can I redirect to a "new organiser" screen and after that, redirect back to the "new event" screen, continuuing where we left (containing the previously submitted text, etc). And ofcourse, how would one start with this? I''m also reading the "Agile Web Development with Rails" book, so it could be eventually discover how to do this, but maybe someone here can point me in the right direction. Thanks in advance, --- Jeroen Janssen