		jQuery(function(jQuery){	
			
			// Transforming the form's Select control using jqTransform Plugin.
			$(".jqtransform").jqTransform();					
			
			// Capturing the change event of the Non-Transformed Select Box.
			$("#box-city select").change(function(){
				var value= $(this).val();
			    alert("Value Selected = "+value);	    	
			});
			
			// Capturing the change event of the Transformed Select Box using the default jQuery method of capturing value change.
			$("#box-name select").change(function(){
				var value= $(this).val();
			    alert("Value Selected = "+value);	    	
			});
			
			// Capturing the change event of the Transformed Select Box using the modified method of capturing the value change event.			
		    $("#box-age div.jqTransformSelectWrapper ul li a").click(function(){   //when selecting another language	
			    var value= $("#box-age div.jqTransformSelectWrapper span").text() 
			    alert("Value Selected = "+value);	    	
			    return false; //prevent default browser action
		    });   	    	    	    
	});	
