You could add it there, but you would still have to change all the lines similar to this:
$pagination.= "<a href=\"$targetpage?page=$prev\">< previous</a>";
To change it on target page do (something similar):
$targetpage = 'sub-category.php?id='.$shopcatid.'&s='.$shopsubcatid;
Then all the lines creating links (like the one previously mentioned) would need changed like so:
$pagination.= "<a href=\"$targetpage&page=$prev\">< previous</a>";
HTH