ajax script redirect

ajax script redirect

Hi ,
I am using an ajax call when clicked on a link... It asks whether you want to continue or not and if you say "ok" then it uses a perl script to delete something from the db...

lets imagine it this way:
+--------+
| name  |  LINK_COLUMN
+--------+
| Brad  |  LINK_to_delete_brad
| Paul  | LINK_to_delete_paul..
| Josh    | ...
| John  | ...
| asdfas | ...
+--------+

=>So I was able to call confirm on each of those links and if agreed use an ajax call to a perl script to wipe the user from database. The thing is that I had to use 
return false;  in the end of my js call (after ajax) otherwise the link would take me to the script, which I dont want to. I want to remain at main level (to be able to see all users)... Now how do i refresh the page after such deletion? Lets image this scenario:

User clicks on link_to_delete Brad => confirm => he confirms by clicking ok => ajax call to perl script that handles the deletion of Brad => return false (I want to remain at index.pl) => HOW DO I REALOAD INDEX.pl ? I deleted Brad but I can still see him cause the page has old data.