function news_cat_change()
{
    if ($("#newscategory").selectedValues() == "Property News")
    {
        $("#newsproperty").removeClass('hide');
    }
    else
    {
        $("#newsproperty").addClass('hide');        
        //$("#newsproperty").selectOptions("");
    }
}