You can display posts from specific categories by adding:
query_posts(cat="your_category");
your_category is the numeric code for the category itself which you can get from the admin menu. So if the category is say 17 your code would be:
query_posts(cat=17);