﻿window.onload=function()
{
	document.getElementById('giftSubsForm').style.display = 'none';
}
			
		function showGiftSubs()
		{
			
			var giftSubsObj = document.getElementById('giftSubs');
			var giftSubsIndex = giftSubsObj.selectedIndex;
			
			if(giftSubsIndex == 0){
			// hiding
			document.getElementById('giftSubsForm').style.display = 'none';
			}
			if(giftSubsIndex == 1){ 
			// showing
			document.getElementById('giftSubsForm').style.display = 'block';
			}
		}