15k doesn't seem too big at all to me. However, if it is a php page, there is a neat little trick you can do:

add this above your < html > tag:

PHP Code:
<?php
@ini_set('zlib.output_compression_level'1);
@
ob_start('ob_gzhandler');
?>
and it will reduce the file size substantially.

hope this helps.