$(function() { $("#sheepDataOne").parent().hide(); $("#sheepDataTwo").parent().hide(); $("#sheepDataThree").parent().hide(); $("#sheepDataFour").parent().hide(); $("#sheepDataFive").parent().hide(); $("#sheepDataSix").parent().hide(); $("#ddSheep").change(function(){ $("#sheepDataFive").parent().hide(); $("#sheepDataSix").parent().hide(); var selected = $('#ddSheep option:selected'); $("#sheepDataOne").parent().show(); $("#sheepDataTwo").parent().show(); $("#sheepDataThree").parent().show(); $("#sheepDataFour").parent().show(); if (selected.data("five") != undefined){ $("#sheepDataFive").parent().show(); $("#sheepDataFive").text(selected.data("five")); } if (selected.data("six") != undefined){ $("#sheepDataSix").parent().show(); $("#sheepDataSix").text(selected.data("six")); } $("#sheepDataOne").text(selected.data("one")); $("#sheepDataTwo").text(selected.data("two")); $("#sheepDataThree").text(selected.data("three")); $("#sheepDataFour").text(selected.data("four")); }); });