In this case you must add some jquery and javascript code: in your hmtl of that page.
Assuming this is my selection to which I will add the new option:
<select name="datatable-buttons_length" class="form-control input-sm">
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
</select>
my javascript and jquery code:
<script>
//nueva opcion para ser agregada
var option_new = $('<option value="1000">1000</option>');
//agregando option_new
$('select[name=datatable-buttons_length').append(option_new);
</script>
in your case the select does not have id, for which I did it x the name, you can do it x id, name, class css..etc ..:
Verifiable Example
I hope it serves you ..suerte