$(function()
{
	$("#selectTimeCommit").change(checkSelectionValue);
	
	function checkSelectionValue()
	{
		currentValue = $("#selectTimeCommit").val();
		if(currentValue=='Other')
		{
			$("#timeCommitText").fadeIn("slow");
		}
		else
		{
			$("#timeCommitText").fadeOut("slow");
		}
	}

	checkSelectionValue()
});
