      $(document).ready(function() {

       // hides the slickbox as soon as the DOM is ready

       // (a little sooner than page load)

        $('#slickbox').hide();

       
		$('#spaceSize').click(function(){
			if(this.selectedIndex == 6)
			{
				$('#slickbox').show('slow');
			}
			else
			{
				$('#slickbox').hide('fast');
			}
			
		});

       // shows the slickbox on clicking the noted link  

//        $('#otherSpace').click(function() {																							

//          $('#slickbox').show('slow');

//          return false;

//        });

       
 
       // hides the slickbox on clicking the noted link  

//        $('.standardSpace').click(function() {

//          $('#slickbox').hide('fast');
 
//          return false;

//        });
       

       // toggles the slickbox on clicking the noted link  
 
        $('#toggle').click(function() {
 
          $('#slickbox').toggle(400);

          return false;

        });

      });

