thank you for this! I added two items to my question and try to navigate to item 2 if option 1 is pressed (a picture saying "richtig") or to item 3 (a picture saying "falsch") if option 2 if chosen. This seems to work fine. Thanks.
Now when they pressed option 1 or option 2 I would like to move on to the next question after 0.5s. Would you be able to help with this, too? 
Many thanks.
<script type="text/javascript">
<!--
 
// Filterfunktion
function selFilter(item, option) {
  // Der erste Filter reagiert, wenn bei Stimulus 1 die Option links (1) ausgewählt wurde
  if (item == 1 && option == 1) {
    // Weiter mit Item Nr. 2
    return 2;
  } else if (item == 1 && option == 2) {
    // Weiter mit Item Nr. 3
    return 3;
  }
}
 
// Die Zuordnungsaufgabe wird erst aktiviert, wenn die Seite vollständig geladen ist.
// Daher muss man attachEvent() verwenden, um die Callback-Funktion erst nach Abschluss
// des Ladevorgangs zuzuweisen.
//
// Wichtig: Statt assignmentAB01 muss hier "assignment" plus die Kennung der Frage verwendet werden
 
SoSciTools.attachEvent(window, "load", function() {
    assignmentBI03.setCallbackSelect(selFilter);
});
 
// -->
</script>