function ds_npr_bulk_action_update_dropdown()
{
    $pull_post_type = DS_NPR_API::ds_npr_get_pull_post_type();
    global $post_type;
    if ($post_type == $pull_post_type) {
        ?>
    <script type="text/javascript">
      jQuery(document).ready(function() {
        jQuery('<option>').val('updateNprStory').text('<?php 
        _e('Update NPR Story');
        ?>
').appendTo("select[name='action']");
        jQuery('<option>').val('updateNprStory').text('<?php 
        _e('Update NPR Story');
        ?>
').appendTo("select[name='action2']");
      });
    </script>
    <?php 
    }
}