JavaScript – Reports to

This code can be added to a re-writer to select no manager by default
How to make "Reports to" default to nothing or a selected user instead of the current user:

if(url.indexOf("UserDetails.po")>-1 && url.indexOf("user=")<0){
  doc.getElementById("users_MANAGER").selectedIndex=0;
}