You’ve already made it clickable in your example. If you would like it to “look” clickable, you can add some CSS:
.teamSelector { cursor: pointer; }
Or continuing with jQuery:
.click(function() { do something }).css("cursor", "pointer");
Here is the W3 schools reference for the cursor property.