after you enter the first query you want to put:
$newID = mysql_insert_id() ;
that will allow you to refer to the new autonumber as $newID
so you would have:
mysql_query("INSERT INTO faculty...") ;
$newId = mysql_insert_id();
mysql_query("INSERT INTO request (facultyID...) VALUES ($newID, ...)") ;
something like that.