function delete_tag_for_event(event_id, tag_id, callback) {
  var url = "/events/" + event_id + "/tags/"+tag_id;
  $.ajax_delete(url, callback);
}