[CS4 AS2.0] attachMovie help needed

Hello

This might sound a bit noobish, but here is my problem and question:

I’m creating a car race game. On one of the stages I want to make a “Car Selection” so I placed 3 buttons with images of cars, and want to associate the attachMovie function to insert choosen car on the track which is on different frame or even scene. So the problem is how to address the attach point if its somewhere else?

each of those buttons have code like this to insert MC to the same frame it is in:

on (release) {
    anch.attachMovie("Lamborghini","Lambo",this.getNextHighestDepth());
}

anchor, <anch> - a mc to which I want cars to be attached

but what with different location?