Facebook API doesn't allows you to subscribe to the like clicking event, but it allows you to subscribe to the like happening event (fired when the like action is completed):
FB.Event.subscribe('edge.create', function(response) {
// like clicked
});
see here.