I Finaly got it to work
I´t was a little diffrent then Gord's solution
In my Mainform's on load the line is
Forms![NameOfMaster]![NameOfSubform].Form![Combo2].Requery
In the subform's "After update" the line is
Forms![NameOfMaster]![NameOfSubform].Form![Combo2]= Null
Forms![NameOfMaster]![NameOfSubform].Form![Combo2].Requery
In Combo1's "after update" the line is
Forms![NameOfMaster]![NameOfSubform].Form![Combo2]= Null
Forms![NameOfMaster]![NameOfSubform].Form![Combo2].Requery
In the queries criteria for Combo2:
=Forms![NameOfMaster]![NameOfSubForm].Form![combo1]
Thats is - easy peasy japanesy
A lot of thanke to Gord
