$("#P40_NEW_1").keyup(function(){
var searchText = $(this).val().toLowerCase();
// Show only matching TR, hide rest of them
$.each($(".a-GV-table tr"), function() {
if($(this).text().toLowerCase().indexOf(searchText) === -1)
$(this).hide();
else
$(this).show();
});
});
Создайте элемент страницы для поиска.
Затем создайте динамическое действие на нажатие клавиши и введите этот код.